public final class Cluster extends Object
Modifier and Type | Class and Description |
---|---|
static class |
Cluster.Builder |
Modifier and Type | Method and Description |
---|---|
List<URI> |
availableHosts() |
static Cluster.Builder |
build() |
static Cluster.Builder |
build(File configurationFile) |
static Cluster.Builder |
build(String address) |
void |
close() |
CompletableFuture<Void> |
closeAsync() |
Client |
connect()
Creates a
Client.ClusteredClient instance to this Cluster , meaning requests will be routed to
one or more servers (depending on the cluster configuration), where each request represents the entirety of a
transaction. |
Client |
connect(String sessionId)
Creates a
Client.SessionedClient instance to this Cluster , meaning requests will be routed to
a single server (randomly selected from the cluster), where the same bindings will be available on each request. |
void |
init() |
boolean |
isClosed()
Determines if the
Cluster has completed its closing process after a call to close() or
closeAsync() . |
boolean |
isClosing()
|
static Cluster |
open()
Create a
Cluster with all default settings which will connect to one contact point at localhost . |
static Cluster |
open(String configurationFile)
Create a
Cluster using a YAML-based configuration file. |
String |
toString() |
public void init()
public Client connect()
Client.ClusteredClient
instance to this Cluster
, meaning requests will be routed to
one or more servers (depending on the cluster configuration), where each request represents the entirety of a
transaction. A commit or rollback (in case of error) is automatically executed at the end of the request.public Client connect(String sessionId)
Client.SessionedClient
instance to this Cluster
, meaning requests will be routed to
a single server (randomly selected from the cluster), where the same bindings will be available on each request.
Requests are bound to the same thread on the server and thus transactions may extend beyond the bounds of a
single request. The transactions are managed by the user and must be committed or rolledback manually.sessionId
- user supplied id for the session which should be unique (a UUID is ideal).public static Cluster.Builder build()
public static Cluster.Builder build(String address)
public static Cluster.Builder build(File configurationFile) throws FileNotFoundException
FileNotFoundException
public static Cluster open()
Cluster
with all default settings which will connect to one contact point at localhost
.public static Cluster open(String configurationFile) throws Exception
Cluster
using a YAML-based configuration file.Exception
public void close()
public CompletableFuture<Void> closeAsync()
public boolean isClosing()
public boolean isClosed()
Cluster
has completed its closing process after a call to close()
or
closeAsync()
.Copyright © 2013–2015 Apache Software Foundation. All rights reserved.