Uses of Interface
com.couchbase.client.core.endpoint.http.CoreCommonOptions
Packages that use CoreCommonOptions
-
Uses of CoreCommonOptions in com.couchbase.client.core.endpoint.http
Fields in com.couchbase.client.core.endpoint.http declared as CoreCommonOptionsMethods in com.couchbase.client.core.endpoint.http that return CoreCommonOptionsModifier and TypeMethodDescriptionstatic CoreCommonOptionsCoreCommonOptions.of(Duration timeout, RetryStrategy retryStrategy, RequestSpan parentSpan) default CoreCommonOptionsCoreCommonOptions.withParentSpan(RequestSpan span) Methods in com.couchbase.client.core.endpoint.http with parameters of type CoreCommonOptionsModifier and TypeMethodDescriptionstatic CoreHttpRequest.BuilderCoreHttpRequest.builder(CoreCommonOptions options, CoreContext coreContext, com.couchbase.client.core.deps.io.netty.handler.codec.http.HttpMethod method, CoreHttpPath path, RequestTarget target) CoreHttpClient.delete(CoreHttpPath path, CoreCommonOptions options) CoreHttpClient.get(CoreHttpPath path, CoreCommonOptions options) CoreHttpClient.newRequest(com.couchbase.client.core.deps.io.netty.handler.codec.http.HttpMethod method, CoreHttpPath path, CoreCommonOptions options) CoreHttpClient.post(CoreHttpPath path, CoreCommonOptions options) CoreHttpClient.put(CoreHttpPath path, CoreCommonOptions options) Constructors in com.couchbase.client.core.endpoint.http with parameters of type CoreCommonOptionsModifierConstructorDescriptionBuilder(CoreCommonOptions options, CoreContext coreContext, RequestTarget target, com.couchbase.client.core.deps.io.netty.handler.codec.http.HttpMethod method, CoreHttpPath path) -
Uses of CoreCommonOptions in com.couchbase.client.core.manager
Methods in com.couchbase.client.core.manager with parameters of type CoreCommonOptionsModifier and TypeMethodDescriptionCoreBucketManager.createBucket(Map<String, String> settings, CoreCommonOptions options) CoreCollectionManager.createCollection(String scopeName, String collectionName, Duration maxTTL, CoreCommonOptions options) CoreAnalyticsLinkManager.createLink(Map<String, String> link, CoreCommonOptions options) CoreCollectionManager.createScope(String scopeName, CoreCommonOptions options) CoreEventingFunctionManager.deployFunction(String name, CoreCommonOptions options) CoreBucketManager.dropBucket(String bucketName, CoreCommonOptions options) CoreCollectionManager.dropCollection(String scopeName, String collectionName, CoreCommonOptions options) CoreViewIndexManager.dropDesignDocument(String name, boolean production, CoreCommonOptions options) Removes a design document from the server.CoreEventingFunctionManager.dropFunction(String name, CoreCommonOptions options) CoreAnalyticsLinkManager.dropLink(String linkName, String dataverse, CoreCommonOptions options) CoreCollectionManager.dropScope(String scopeName, CoreCommonOptions options) CoreBucketManager.flushBucket(String bucketName, CoreCommonOptions options) CompletableFuture<byte[]>CoreEventingFunctionManager.functionsStatus(CoreCommonOptions options) CompletableFuture<Map<String,byte[]>> CoreBucketManager.getAllBuckets(CoreCommonOptions options) CompletableFuture<Map<String,com.couchbase.client.core.deps.com.fasterxml.jackson.databind.node.ObjectNode>> CoreViewIndexManager.getAllDesignDocuments(boolean production, CoreCommonOptions options) Returns map of design doc name to JSON.CompletableFuture<byte[]>CoreEventingFunctionManager.getAllFunctions(CoreCommonOptions options) CoreCollectionManager.getAllScopes(CoreCommonOptions options) CompletableFuture<byte[]>CoreBucketManager.getBucket(String bucketName, CoreCommonOptions options) CompletableFuture<byte[]>CoreViewIndexManager.getDesignDocument(String name, boolean production, CoreCommonOptions options) Returns the named design document from the specified namespace.CompletableFuture<byte[]>CoreEventingFunctionManager.getFunction(String name, CoreCommonOptions options) CompletableFuture<byte[]>CoreAnalyticsLinkManager.getLinks(String dataverseName, String linkType, String linkName, CoreCommonOptions options) CoreEventingFunctionManager.pauseFunction(String name, CoreCommonOptions options) CoreViewIndexManager.publishDesignDocument(String name, CoreCommonOptions options) Convenience method that gets a the document from the development namespace and upserts it to the production namespace.CoreAnalyticsLinkManager.replaceLink(Map<String, String> link, CoreCommonOptions options) CoreEventingFunctionManager.resumeFunction(String name, CoreCommonOptions options) CoreEventingFunctionManager.undeployFunction(String name, CoreCommonOptions options) CoreBucketManager.updateBucket(Map<String, String> settings, CoreCommonOptions options) CoreViewIndexManager.upsertDesignDocument(String docName, byte[] doc, boolean production, CoreCommonOptions options) Stores the design document on the server under the specified namespace, replacing any existing document with the same name.CoreEventingFunctionManager.upsertFunction(String name, byte[] function, CoreCommonOptions options)