public interface ConfigurationChildBuilder
Modifier and Type | Method and Description |
---|---|
ClusterConfigurationBuilder |
addCluster(String clusterName)
Adds a new remote server cluster
|
ServerConfigurationBuilder |
addServer()
Adds a new remote server
|
ConfigurationBuilder |
addServers(String servers)
Adds a list of remote servers in the form: host1[:port][;host2[:port]]...
|
ExecutorFactoryConfigurationBuilder |
asyncExecutorFactory()
Configuration for the executor service used for asynchronous work on the Transport, including
asynchronous marshalling and Cache 'async operations' such as Cache.putAsync().
|
ConfigurationBuilder |
balancingStrategy(Class<? extends FailoverRequestBalancingStrategy> balancingStrategy)
For replicated (vs distributed) Hot Rod server clusters, the client balances requests to the
servers according to this strategy.
|
ConfigurationBuilder |
balancingStrategy(FailoverRequestBalancingStrategy balancingStrategy)
For replicated (vs distributed) Hot Rod server clusters, the client balances requests to the
servers according to this strategy.
|
ConfigurationBuilder |
balancingStrategy(String balancingStrategy)
For replicated (vs distributed) Hot Rod server clusters, the client balances requests to the
servers according to this strategy.
|
Configuration |
build()
Builds a configuration object
|
ConfigurationBuilder |
classLoader(ClassLoader classLoader)
Deprecated.
since 9.0. If you need to load configuration resources from other locations, you will need to do so
yourself and use the appropriate configuration methods (e.g.
SslConfigurationBuilder.sslContext(SSLContext) ) |
ConfigurationBuilder |
clientIntelligence(ClientIntelligence clientIntelligence)
Specifies the level of "intelligence" the client should have
|
ConnectionPoolConfigurationBuilder |
connectionPool()
Configures the connection pool
|
ConfigurationBuilder |
connectionTimeout(int connectionTimeout)
This property defines the maximum socket connect timeout before giving up connecting to the
server.
|
ConfigurationBuilder |
consistentHashImpl(int version,
Class<? extends ConsistentHash> consistentHashClass)
Defines the
ConsistentHash implementation to use for the specified version. |
ConfigurationBuilder |
consistentHashImpl(int version,
String consistentHashClass)
Defines the
ConsistentHash implementation to use for the specified version. |
ConfigurationBuilder |
forceReturnValues(boolean forceReturnValues)
Whether or not to implicitly FORCE_RETURN_VALUE for all calls.
|
ConfigurationBuilder |
keySizeEstimate(int keySizeEstimate)
This hint allows sizing of byte buffers when serializing and deserializing keys, to minimize array resizing.
|
ConfigurationBuilder |
marshaller(Class<? extends Marshaller> marshaller)
Allows you to specify a custom
Marshaller implementation to
serialize and deserialize user objects. |
ConfigurationBuilder |
marshaller(Marshaller marshaller)
Allows you to specify an instance of
Marshaller to serialize
and deserialize user objects. |
ConfigurationBuilder |
marshaller(String marshaller)
Allows you to specify a custom
Marshaller implementation to
serialize and deserialize user objects. |
ConfigurationBuilder |
maxRetries(int maxRetries)
It sets the maximum number of retries for each request.
|
ConfigurationBuilder |
protocolVersion(String protocolVersion)
Deprecated.
Use
version(ProtocolVersion) instead. |
SecurityConfigurationBuilder |
security()
Security Configuration
|
ConfigurationBuilder |
socketTimeout(int socketTimeout)
This property defines the maximum socket read timeout in milliseconds before giving up waiting
for bytes from the server.
|
ConfigurationBuilder |
tcpKeepAlive(boolean keepAlive)
Affects TCP KEEPALIVE on the TCP stack.
|
ConfigurationBuilder |
tcpNoDelay(boolean tcpNoDelay)
Affects TCP NODELAY on the TCP stack.
|
ConfigurationBuilder |
transportFactory(Class<? extends TransportFactory> transportFactory)
Controls which transport to use.
|
ConfigurationBuilder |
transportFactory(String transportFactory)
Controls which transport to use.
|
ConfigurationBuilder |
valueSizeEstimate(int valueSizeEstimate)
This hint allows sizing of byte buffers when serializing and deserializing values, to minimize
array resizing.
|
ConfigurationBuilder |
version(ProtocolVersion protocolVersion)
This property defines the protocol version that this client should use.
|
ConfigurationBuilder |
withProperties(Properties properties)
Configures this builder using the specified properties
|
ServerConfigurationBuilder addServer()
ClusterConfigurationBuilder addCluster(String clusterName)
ConfigurationBuilder addServers(String servers)
ExecutorFactoryConfigurationBuilder asyncExecutorFactory()
ConfigurationBuilder balancingStrategy(String balancingStrategy)
ConfigurationBuilder balancingStrategy(FailoverRequestBalancingStrategy balancingStrategy)
ConfigurationBuilder balancingStrategy(Class<? extends FailoverRequestBalancingStrategy> balancingStrategy)
@Deprecated ConfigurationBuilder classLoader(ClassLoader classLoader)
SslConfigurationBuilder.sslContext(SSLContext)
)ClassLoader
used to find certain resources used by configuration when specified by name
(e.g. certificate stores). Infinispan will search through the classloader which loaded this class, the system
classloader, the TCCL and the OSGi classloader (if applicable).ConfigurationBuilder clientIntelligence(ClientIntelligence clientIntelligence)
ConnectionPoolConfigurationBuilder connectionPool()
ConfigurationBuilder connectionTimeout(int connectionTimeout)
ConfigurationBuilder consistentHashImpl(int version, Class<? extends ConsistentHash> consistentHashClass)
ConsistentHash
implementation to use for the specified version. By default,
ConsistentHashV2
is used for version 1 and ConsistentHashV2
is used for version 2.ConfigurationBuilder consistentHashImpl(int version, String consistentHashClass)
ConsistentHash
implementation to use for the specified version. By default,
ConsistentHashV2
is used for version 1 and ConsistentHashV2
is used for version 2.ConfigurationBuilder forceReturnValues(boolean forceReturnValues)
ConfigurationBuilder keySizeEstimate(int keySizeEstimate)
ConfigurationBuilder marshaller(String marshaller)
Marshaller
implementation to
serialize and deserialize user objects. This method is mutually exclusive with marshaller(Marshaller)
.ConfigurationBuilder marshaller(Class<? extends Marshaller> marshaller)
Marshaller
implementation to
serialize and deserialize user objects. This method is mutually exclusive with marshaller(Marshaller)
.ConfigurationBuilder marshaller(Marshaller marshaller)
Marshaller
to serialize
and deserialize user objects. This method is mutually exclusive with marshaller(Class)
.@Deprecated ConfigurationBuilder protocolVersion(String protocolVersion)
version(ProtocolVersion)
instead.ConfigurationBuilder version(ProtocolVersion protocolVersion)
ConfigurationBuilder socketTimeout(int socketTimeout)
SecurityConfigurationBuilder security()
ConfigurationBuilder tcpNoDelay(boolean tcpNoDelay)
ConfigurationBuilder tcpKeepAlive(boolean keepAlive)
ConfigurationBuilder transportFactory(String transportFactory)
ConfigurationBuilder transportFactory(Class<? extends TransportFactory> transportFactory)
ConfigurationBuilder valueSizeEstimate(int valueSizeEstimate)
ConfigurationBuilder maxRetries(int maxRetries)
ConfigurationBuilder withProperties(Properties properties)
Configuration build()
Copyright © 2017 JBoss, a division of Red Hat. All rights reserved.