Class SyncConfiguration
- java.lang.Object
-
- org.infinispan.configuration.cache.SyncConfiguration
-
- All Implemented Interfaces:
Matchable<SyncConfiguration>
@Deprecated public class SyncConfiguration extends Object implements Matchable<SyncConfiguration>
Deprecated.Since 9.0, thereplTimeoutattribute 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 AttributeDefinition<Long>REPL_TIMEOUTDeprecated.Since 9.0, replaced withClusteringConfiguration.REMOTE_TIMEOUT
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AttributeSetattributes()Deprecated.booleanequals(Object obj)Deprecated.inthashCode()Deprecated.longreplTimeout()Deprecated.Since 9.0, please useClusteringConfiguration.remoteTimeout()instead.SyncConfigurationreplTimeout(long l)Deprecated.Since 9.0, please useClusteringConfiguration.remoteTimeout(long)instead.StringtoString()Deprecated.
-
-
-
Field Detail
-
REPL_TIMEOUT
@Deprecated public static final 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 AttributeSet attributes()
Deprecated.
-
-