Class SyncConfiguration
- java.lang.Object
-
- org.infinispan.configuration.cache.SyncConfiguration
-
- All Implemented Interfaces:
org.infinispan.commons.configuration.attributes.Matchable<SyncConfiguration>
@Deprecated public class SyncConfiguration extends Object implements org.infinispan.commons.configuration.attributes.Matchable<SyncConfiguration>
Deprecated.Since 9.0, thereplTimeout
attribute is nowClusteringConfiguration.remoteTimeout
.If configured all communications are synchronous, in that whenever a thread sends a message sent over the wire, it blocks until it receives an acknowledgment from the recipient. SyncConfig is mutually exclusive with the AsyncConfig.
-
-
Field Summary
Fields Modifier and Type Field Description static org.infinispan.commons.configuration.attributes.AttributeDefinition<Long>
REPL_TIMEOUT
Deprecated.Since 9.0, replaced withClusteringConfiguration.REMOTE_TIMEOUT
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description org.infinispan.commons.configuration.attributes.AttributeSet
attributes()
Deprecated.boolean
equals(Object obj)
Deprecated.int
hashCode()
Deprecated.long
replTimeout()
Deprecated.Since 9.0, please useClusteringConfiguration.remoteTimeout()
instead.SyncConfiguration
replTimeout(long l)
Deprecated.Since 9.0, please useClusteringConfiguration.remoteTimeout(long)
instead.String
toString()
Deprecated.
-
-
-
Field Detail
-
REPL_TIMEOUT
@Deprecated public static final org.infinispan.commons.configuration.attributes.AttributeDefinition<Long> REPL_TIMEOUT
Deprecated.Since 9.0, replaced withClusteringConfiguration.REMOTE_TIMEOUT
-
-
Method Detail
-
replTimeout
@Deprecated public long replTimeout()
Deprecated.Since 9.0, please useClusteringConfiguration.remoteTimeout()
instead.This is the timeout used to wait for an acknowledgment when making a remote call, after which the call is aborted and an exception is thrown.
-
replTimeout
@Deprecated public SyncConfiguration replTimeout(long l)
Deprecated.Since 9.0, please useClusteringConfiguration.remoteTimeout(long)
instead.This is the timeout used to wait for an acknowledgment when making a remote call, after which the call is aborted and an exception is thrown.
-
attributes
public org.infinispan.commons.configuration.attributes.AttributeSet attributes()
Deprecated.
-
-