Uses of Interface
org.infinispan.hotrod.impl.transport.netty.ChannelOperation
-
-
Uses of ChannelOperation in org.infinispan.hotrod.impl.counter.operation
Classes in org.infinispan.hotrod.impl.counter.operation that implement ChannelOperation Modifier and Type Class Description classAddListenerOperationAn add listener operation forStrongCounter.addListener(CounterListener)andWeakCounter.addListener(CounterListener)classAddOperationAdd operation.classCompareAndSwapOperationA compare-and-set operation forStrongCounter.compareAndSwap(long, long)andStrongCounter.compareAndSet(long, long).classDefineCounterOperationA counter define operation forCounterManager.defineCounter(String, CounterConfiguration).classGetConfigurationOperationA counter configuration forCounterManager.getConfiguration(String).classGetCounterNamesOperationA counter operation forCounterManager.getCounterNames().classGetValueOperationA counter operation that returns the counter's value.classIsDefinedOperationA counter operation forCounterManager.isDefined(String).classRemoveListenerOperationA remove listener operation forHandle.remove().classRemoveOperationA counter operation forCounterManager.remove(String),StrongCounter.remove()andWeakCounter.remove().classResetOperationA counter operation forStrongCounter.reset()andWeakCounter.reset(). -
Uses of ChannelOperation in org.infinispan.hotrod.impl.multimap.operations
Classes in org.infinispan.hotrod.impl.multimap.operations that implement ChannelOperation Modifier and Type Class Description classAbstractMultimapKeyOperation<K,T>classAbstractMultimapKeyValueOperation<K,T>classContainsEntryMultimapOperation<K>Implements "contains entry" for multimap as defined by Hot Rod protocol specification.classContainsKeyMultimapOperation<K>Implements "contains key" for multimap cache as defined by Hot Rod protocol specification.classContainsValueMultimapOperationImplements "contains value" for multimap cache as defined by Hot Rod protocol specification.classGetKeyMultimapOperation<K,V>Implements "get" for multimap as defined by Hot Rod protocol specification.classGetKeyWithMetadataMultimapOperation<K,V>Implements "getWithMetadata" as defined by Hot Rod protocol specification.classPutKeyValueMultimapOperation<K>Implements "put" for multimap cache as defined by Hot Rod protocol specification.classRemoveEntryMultimapOperation<K>Implements "remove" for multimap as defined by Hot Rod protocol specification.classRemoveKeyMultimapOperation<K>Implements "remove" for multimap cache as defined by Hot Rod protocol specification.classSizeMultimapOperationImplements "size" for multimap cache as defined by Hot Rod protocol specification. -
Uses of ChannelOperation in org.infinispan.hotrod.impl.operations
Classes in org.infinispan.hotrod.impl.operations that implement ChannelOperation Modifier and Type Class Description classAbstractKeyOperation<K,T>Basic class for all hot rod operations that manipulate a key.classAbstractKeyValueOperation<K,T>Base class for all operations that manipulate a key and a value.classAbstractPutIfAbsentOperation<K,T>Implements "putIfAbsent" operation as described in Hot Rod protocol specification.classAbstractPutOperation<K,T>Implements "put" as defined by Hot Rod protocol specification.classAbstractRemoveOperation<K,T>Implement "remove" operation as described in Hot Rod protocol specification.classAddBloomNearCacheClientListenerOperationclassAddClientListenerOperationclassAdminOperationAdminOperation.classBulkGetKeysOperation<K>Reads all keys.classClearOperationCorresponds to clear operation as defined by Hot Rod protocol specification.classClientListenerOperationclassContainsKeyOperation<K>Implements "containsKey" operation as described in Hot Rod protocol specification.classExecuteOperation<T>ExecuteOperation.classFaultTolerantPingOperationA fault tolerant ping operation that can survive to node failures.classGetAllOperation<K,V>Implements "getAll" as defined by Hot Rod protocol specification.classGetAndRemoveOperation<K,V>Implement "remove" operation as described in Hot Rod protocol specification.classGetOperation<K,V>Implements "get" operation as described by Hot Rod protocol specification.classGetStreamOperation<K>Streaming Get operationclassGetWithMetadataOperation<K,V>Corresponds to getWithMetadata operation as described by Hot Rod protocol specification.classIterationStartOperationclassPingOperationCorresponds to the "ping" operation as defined in Hot Rod protocol specification.classPutAllOperationImplements "putAll" as defined by Hot Rod protocol specification.classPutIfAbsentOperation<K,V>Implements "putIfAbsent" operation as described in Hot Rod protocol specification.classPutOperation<K,V>Implements "put" as defined by Hot Rod protocol specification.classPutStreamOperation<K>Streaming put operationclassQueryOperationclassRemoveClientListenerOperationRemove client listener operation.classRemoveIfUnmodifiedOperation<K,V>Implements "removeIfUnmodified" operation as defined by Hot Rod protocol specification.classRemoveOperation<K>Implement "remove" operation as described in Hot Rod protocol specification.classReplaceIfUnmodifiedOperation<K,V>Implement "replaceIfUnmodified" as defined by Hot Rod protocol specification.classReplaceOperation<K,V>Implements "Replace" operation as defined by Hot Rod protocol specification.classRetryOnFailureOperation<T>Base class for all the operations that need retry logic: if the operation fails due to connection problems, try with another available connection.classSetIfAbsentOperation<K>Implements "putIfAbsent" operation as described in Hot Rod protocol specification.classSetOperation<K>Implements "put" as defined by Hot Rod protocol specification.classSizeOperationclassStatsAffectingRetryingOperation<T>classStatsOperationImplements to the stats operation as defined by Hot Rod protocol specification.classUpdateBloomFilterOperation -
Uses of ChannelOperation in org.infinispan.hotrod.impl.transaction.operations
Classes in org.infinispan.hotrod.impl.transaction.operations that implement ChannelOperation Modifier and Type Class Description classCompleteTransactionOperationRepresents a commit or rollback request from theTransactionManager.classForgetTransactionOperationIt forgets the transaction identified byXidin the server.classPrepareTransactionOperationA prepare request from theTransactionManager.classRecoveryOperationA recovery request from theTransactionManager. -
Uses of ChannelOperation in org.infinispan.hotrod.impl.transport.netty
Methods in org.infinispan.hotrod.impl.transport.netty with type parameters of type ChannelOperation Modifier and Type Method Description <T extends ChannelOperation>
TChannelFactory. fetchChannelAndInvoke(Object key, Set<SocketAddress> failedServers, byte[] cacheName, T operation)<T extends ChannelOperation>
TChannelFactory. fetchChannelAndInvoke(SocketAddress server, T operation)<T extends ChannelOperation>
TChannelFactory. fetchChannelAndInvoke(Set<SocketAddress> failedServers, byte[] cacheName, T operation)
-