Package com.couchbase.client.java
Class ClusterOptions
- java.lang.Object
-
- com.couchbase.client.java.ClusterOptions
-
public class ClusterOptions extends Object
Allows specifying custom options when connecting to the cluster.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
ClusterOptions.Built
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ClusterOptions.Built
build()
static ClusterOptions
clusterOptions(Authenticator authenticator)
static ClusterOptions
clusterOptions(String username, String password)
ClusterOptions
environment(ClusterEnvironment environment)
Sets the ClusterEnvironment to use with this cluster.ClusterOptions
environment(Consumer<ClusterEnvironment.Builder> environmentCustomizer)
Sets a callback that configures the ClusterEnvironment owned by this cluster.
-
-
-
Method Detail
-
clusterOptions
public static ClusterOptions clusterOptions(Authenticator authenticator)
-
clusterOptions
public static ClusterOptions clusterOptions(String username, String password)
-
environment
public ClusterOptions environment(ClusterEnvironment environment)
Sets the ClusterEnvironment to use with this cluster.The caller is responsible for shutting down the environment after all clusters sharing it have disconnected.
Use this method when sharing an environment between multiple clusters. In all other cases, prefer
environment(Consumer)
.
-
environment
@Uncommitted public ClusterOptions environment(Consumer<ClusterEnvironment.Builder> environmentCustomizer)
Sets a callback that configures the ClusterEnvironment owned by this cluster.The cluster will manage the lifecycle of the environment, and automatically shut it down when the cluster is disconnected.
This is the recommended way to configure the cluster environment unless you need to share an environment between multiple clusters.
-
build
@Internal public ClusterOptions.Built build()
-
-