Uses of Class
com.couchbase.client.core.env.SeedNode
-
-
Uses of SeedNode in com.couchbase.client.core
Method parameters in com.couchbase.client.core with type arguments of type SeedNode Modifier and Type Method Description static Core
Core. create(CoreEnvironment environment, Authenticator authenticator, Set<SeedNode> seedNodes)
Creates a newCore
with the given environment.Constructor parameters in com.couchbase.client.core with type arguments of type SeedNode Constructor Description Core(CoreEnvironment environment, Authenticator authenticator, Set<SeedNode> seedNodes)
Creates a new Core. -
Uses of SeedNode in com.couchbase.client.core.cnc.events.config
Constructor parameters in com.couchbase.client.core.cnc.events.config with type arguments of type SeedNode Constructor Description SeedNodesUpdatedEvent(Context context, Set<SeedNode> oldSeedNodes, Set<SeedNode> newSeedNodes)
-
Uses of SeedNode in com.couchbase.client.core.cnc.events.core
Constructor parameters in com.couchbase.client.core.cnc.events.core with type arguments of type SeedNode Constructor Description CoreCreatedEvent(CoreContext context, CoreEnvironment environment, Set<SeedNode> seedNodes)
-
Uses of SeedNode in com.couchbase.client.core.config
Methods in com.couchbase.client.core.config that return types with arguments of type SeedNode Modifier and Type Method Description Flux<Set<SeedNode>>
ConfigurationProvider. seedNodes()
Returns a stream of seed node sets sourced from the server's global config or bucket config.Flux<Set<SeedNode>>
DefaultConfigurationProvider. seedNodes()
Constructor parameters in com.couchbase.client.core.config with type arguments of type SeedNode Constructor Description DefaultConfigurationProvider(Core core, Set<SeedNode> seedNodes)
Creates a new configuration provider. -
Uses of SeedNode in com.couchbase.client.core.env
Fields in com.couchbase.client.core.env with type parameters of type SeedNode Modifier and Type Field Description static Set<SeedNode>
SeedNode. LOCALHOST
Seed node set pointing to localhost with default ports.Methods in com.couchbase.client.core.env that return SeedNode Modifier and Type Method Description static SeedNode
SeedNode. create(String address)
Creates a seed node from a hostname and the default ports.static SeedNode
SeedNode. create(String address, Optional<Integer> kvPort, Optional<Integer> clusterManagerPort)
Creates a seed node from a hostname and custom ports. -
Uses of SeedNode in com.couchbase.client.core.util
Methods in com.couchbase.client.core.util that return types with arguments of type SeedNode Modifier and Type Method Description static Set<SeedNode>
ConnectionStringUtil. seedNodesFromConnectionString(String cs, boolean dnsSrvEnabled, boolean tlsEnabled, EventBus eventBus)
Populates a list of seed nodes from the connection string.Method parameters in com.couchbase.client.core.util with type arguments of type SeedNode Modifier and Type Method Description static String
ConnectionStringUtil. asConnectionString(Collection<SeedNode> nodes)
Returns a synthetic connection string corresponding to the seed nodes.
-