Uses of Interface
org.infinispan.client.hotrod.impl.operations.HotRodOperation
Packages that use HotRodOperation
Package
Description
-
Uses of HotRodOperation in org.infinispan.client.hotrod.counter.operation
Classes in org.infinispan.client.hotrod.counter.operation that implement HotRodOperationModifier and TypeClassDescriptionclassAn add listener operation forStrongCounter.addListener(CounterListener)andWeakCounter.addListener(CounterListener)classAdd operation.classA compare-and-set operation forStrongCounter.compareAndSwap(long, long)andStrongCounter.compareAndSet(long, long).classA counter define operation forCounterManager.defineCounter(String, CounterConfiguration).classA counter configuration forCounterManager.getConfiguration(String).classA counter operation forCounterManager.getCounterNames().classA counter operation that returns the counter's value.classA counter operation forCounterManager.isDefined(String).classA remove listener operation forHandle.remove().classA counter operation forCounterManager.remove(String),StrongCounter.remove()andWeakCounter.remove().classA counter operation forStrongCounter.reset()andWeakCounter.reset().classA set operation forStrongCounter.getAndSet(long) -
Uses of HotRodOperation in org.infinispan.client.hotrod.impl.multimap.operations
Classes in org.infinispan.client.hotrod.impl.multimap.operations that implement HotRodOperationModifier and TypeClassDescriptionclassclassclassImplements "contains entry" for multimap as defined by Hot Rod protocol specification.classImplements "contains key" for multimap cache as defined by Hot Rod protocol specification.classImplements "contains value" for multimap cache as defined by Hot Rod protocol specification.classImplements "get" for multimap as defined by Hot Rod protocol specification.classImplements "getWithMetadata" as defined by Hot Rod protocol specification.classImplements "put" for multimap cache as defined by Hot Rod protocol specification.classImplements "remove" for multimap as defined by Hot Rod protocol specification.classImplements "remove" for multimap cache as defined by Hot Rod protocol specification.classImplements "size" for multimap cache as defined by Hot Rod protocol specification.Methods in org.infinispan.client.hotrod.impl.multimap.operations that return HotRodOperationModifier and TypeMethodDescription<K,V> HotRodOperation <Boolean> DefaultMultimapOperationsFactory.newContainsEntryOperation(K key, V value, boolean supportsDuplicates) <K,V> HotRodOperation <Boolean> DelegatingMultimapOperationsFactory.newContainsEntryOperation(K key, V value, boolean supportsDuplicates) <K,V> HotRodOperation <Boolean> MultimapOperationsFactory.newContainsEntryOperation(K key, V value, boolean supportsDuplicates) <K,V> HotRodOperation <Boolean> RoutingMultimapOperationsFactory.newContainsEntryOperation(K key, V value, boolean supportsDuplicates) <K> HotRodOperation<Boolean> DefaultMultimapOperationsFactory.newContainsKeyOperation(K key, boolean supportsDuplicates) <K> HotRodOperation<Boolean> DelegatingMultimapOperationsFactory.newContainsKeyOperation(K key, boolean supportsDuplicates) <K> HotRodOperation<Boolean> MultimapOperationsFactory.newContainsKeyOperation(K key, boolean supportsDuplicates) <K> HotRodOperation<Boolean> RoutingMultimapOperationsFactory.newContainsKeyOperation(K key, boolean supportsDuplicates) DefaultMultimapOperationsFactory.newContainsValueOperation(byte[] value, boolean supportsDuplicates) DelegatingMultimapOperationsFactory.newContainsValueOperation(byte[] value, boolean supportsDuplicates) MultimapOperationsFactory.newContainsValueOperation(byte[] value, boolean supportsDuplicates) <K,V> HotRodOperation <Collection<V>> DefaultMultimapOperationsFactory.newGetKeyMultimapOperation(K key, boolean supportsDuplicates) <K,V> HotRodOperation <Collection<V>> DelegatingMultimapOperationsFactory.newGetKeyMultimapOperation(K key, boolean supportsDuplicates) <K,V> HotRodOperation <Collection<V>> MultimapOperationsFactory.newGetKeyMultimapOperation(K key, boolean supportsDuplicates) <K,V> HotRodOperation <Collection<V>> RoutingMultimapOperationsFactory.newGetKeyMultimapOperation(K key, boolean supportsDuplicates) <K,V> HotRodOperation <MetadataCollection<V>> DefaultMultimapOperationsFactory.newGetKeyWithMetadataMultimapOperation(K key, boolean supportsDuplicates) <K,V> HotRodOperation <MetadataCollection<V>> DelegatingMultimapOperationsFactory.newGetKeyWithMetadataMultimapOperation(K key, boolean supportsDuplicates) <K,V> HotRodOperation <MetadataCollection<V>> MultimapOperationsFactory.newGetKeyWithMetadataMultimapOperation(K key, boolean supportsDuplicates) <K,V> HotRodOperation <MetadataCollection<V>> RoutingMultimapOperationsFactory.newGetKeyWithMetadataMultimapOperation(K key, boolean supportsDuplicates) <K,V> HotRodOperation <Void> DefaultMultimapOperationsFactory.newPutKeyValueOperation(K key, V value, long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit, boolean supportsDuplicates) <K,V> HotRodOperation <Void> DelegatingMultimapOperationsFactory.newPutKeyValueOperation(K key, V value, long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit, boolean supportsDuplicates) <K,V> HotRodOperation <Void> MultimapOperationsFactory.newPutKeyValueOperation(K key, V value, long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit, boolean supportsDuplicates) <K,V> HotRodOperation <Boolean> DefaultMultimapOperationsFactory.newRemoveEntryOperation(K key, V value, boolean supportsDuplicates) <K,V> HotRodOperation <Boolean> DelegatingMultimapOperationsFactory.newRemoveEntryOperation(K key, V value, boolean supportsDuplicates) <K,V> HotRodOperation <Boolean> MultimapOperationsFactory.newRemoveEntryOperation(K key, V value, boolean supportsDuplicates) <K,V> HotRodOperation <Boolean> RoutingMultimapOperationsFactory.newRemoveEntryOperation(K key, V value, boolean supportsDuplicates) <K> HotRodOperation<Boolean> DefaultMultimapOperationsFactory.newRemoveKeyOperation(K key, boolean supportsDuplicates) <K> HotRodOperation<Boolean> DelegatingMultimapOperationsFactory.newRemoveKeyOperation(K key, boolean supportsDuplicates) <K> HotRodOperation<Boolean> MultimapOperationsFactory.newRemoveKeyOperation(K key, boolean supportsDuplicates) <K> HotRodOperation<Boolean> RoutingMultimapOperationsFactory.newRemoveKeyOperation(K key, boolean supportsDuplicates) DefaultMultimapOperationsFactory.newSizeOperation(boolean supportsDuplicates) DelegatingMultimapOperationsFactory.newSizeOperation(boolean supportsDuplicates) MultimapOperationsFactory.newSizeOperation(boolean supportsDuplicates) -
Uses of HotRodOperation in org.infinispan.client.hotrod.impl.operations
Classes in org.infinispan.client.hotrod.impl.operations with type parameters of type HotRodOperationModifier and TypeClassDescriptionclassHotRodBulkOperation<Input,Output, Op extends HotRodOperation<Output>> An HotRod operation that span across multiple remote nodes concurrently (like getAll / putAll).Classes in org.infinispan.client.hotrod.impl.operations that implement HotRodOperationModifier and TypeClassDescriptionclassclassclassclassclassclassclassclassclassclassPerforms a step in the challenge/response authentication operationclassclassclassCorresponds to clear operation as defined by Hot Rod protocol specification.classclassImplements "containsKey" operation as described in Hot Rod protocol specification.classclassGetAllOperation<K,V> Implements "getAll" as defined by Hot Rod protocol specification.classGetOperation<V>classclassclassclassCorresponds to getWithMetadata operation as described by Hot Rod protocol specification.classclassclassclassclassclassclassclassclassImplements "putIfAbsent" operation as described in Hot Rod protocol specification.classPutOperation<V>Implements "put" as defined by Hot Rod protocol specification.classclassclassfinal classclassRemove client listener operation.classImplements "removeIfUnmodified" operation as defined by Hot Rod protocol specification.classImplement "remove" operation as described in Hot Rod protocol specification.classImplement "replaceIfUnmodified" as defined by Hot Rod protocol specification.classImplements "Replace" operation as defined by Hot Rod protocol specification.classclassclassclassImplements to the stats operation as defined by Hot Rod protocol specification.classFields in org.infinispan.client.hotrod.impl.operations declared as HotRodOperationModifier and TypeFieldDescriptionprotected final HotRodOperation<T> DelegatingHotRodOperation.delegateMethods in org.infinispan.client.hotrod.impl.operations that return HotRodOperationModifier and TypeMethodDescription<T> HotRodOperation<T> CacheOperationsFactory.executeOperation(String taskName, Map<String, byte[]> marshalledParams, Object key) <T> HotRodOperation<T> DefaultCacheOperationsFactory.executeOperation(String taskName, Map<String, byte[]> marshalledParams, Object key) <T> HotRodOperation<T> DelegatingCacheOperationsFactory.executeOperation(String taskName, Map<String, byte[]> marshalledParams, Object key) ManagerOperationsFactory.executeOperation(String taskName, Map<String, byte[]> marshalledParams) <T> HotRodOperation<T> ObjectRoutingCacheOperationsFactory.executeOperation(String taskName, Map<String, byte[]> marshalledParams, Object key) <T> HotRodOperation<T> ServerRoutingCacheOperationsFactory.executeOperation(String taskName, Map<String, byte[]> marshalledParams, Object key) CacheOperationsFactory.newClearOperation()DelegatingCacheOperationsFactory.newClearOperation()ManagerOperationsFactory.newCompleteTransactionOperation(Xid xid, boolean commit) <K> HotRodOperation<Boolean> CacheOperationsFactory.newContainsKeyOperation(K key) <K> HotRodOperation<Boolean> DefaultCacheOperationsFactory.newContainsKeyOperation(K key) <K> HotRodOperation<Boolean> DelegatingCacheOperationsFactory.newContainsKeyOperation(K key) <K> HotRodOperation<Boolean> ObjectRoutingCacheOperationsFactory.newContainsKeyOperation(K key) <K> HotRodOperation<Boolean> ServerRoutingCacheOperationsFactory.newContainsKeyOperation(K key) ManagerOperationsFactory.newForgetTransactionOperation(Xid xid) <K,V> HotRodOperation <Map<K, V>> CacheOperationsFactory.newGetAllBytesOperation(Set<byte[]> keys) This method should not be invoked by callers normally as it bypasses other factory checks.<K,V> HotRodOperation <Map<K, V>> DelegatingCacheOperationsFactory.newGetAllBytesOperation(Set<byte[]> keys) <K,V> HotRodOperation <Map<K, V>> StatsOperationsFactory.newGetAllBytesOperation(Set<byte[]> keys) <V> HotRodOperation<V> CacheOperationsFactory.newGetOperation(Object key) <V> HotRodOperation<V> DefaultCacheOperationsFactory.newGetOperation(Object key) <V> HotRodOperation<V> DelegatingCacheOperationsFactory.newGetOperation(Object key) <V> HotRodOperation<V> ObjectRoutingCacheOperationsFactory.newGetOperation(Object key) <V> HotRodOperation<V> ServerRoutingCacheOperationsFactory.newGetOperation(Object key) <V> HotRodOperation<V> StatsOperationsFactory.newGetOperation(Object key) CacheOperationsFactory.newGetStreamNextOperation(int id, io.netty.channel.Channel channel) DefaultCacheOperationsFactory.newGetStreamNextOperation(int id, io.netty.channel.Channel channel) DelegatingCacheOperationsFactory.newGetStreamNextOperation(int id, io.netty.channel.Channel channel) StatsOperationsFactory.newGetStreamNextOperation(int id, io.netty.channel.Channel channel) CacheOperationsFactory.newGetStreamStartOperation(Object key, int batchSize) DefaultCacheOperationsFactory.newGetStreamStartOperation(Object key, int batchSize) DelegatingCacheOperationsFactory.newGetStreamStartOperation(Object key, int batchSize) ObjectRoutingCacheOperationsFactory.newGetStreamStartOperation(Object key, int batchSize) ServerRoutingCacheOperationsFactory.newGetStreamStartOperation(Object key, int batchSize) StatsOperationsFactory.newGetStreamStartOperation(Object key, int batchSize) CacheOperationsFactory.newGetWithMetadataOperation(K key, io.netty.channel.Channel channel) DefaultCacheOperationsFactory.newGetWithMetadataOperation(K key, io.netty.channel.Channel channel) DelegatingCacheOperationsFactory.newGetWithMetadataOperation(K key, io.netty.channel.Channel preferredChannel) ObjectRoutingCacheOperationsFactory.newGetWithMetadataOperation(K key, io.netty.channel.Channel preferredChannel) ServerRoutingCacheOperationsFactory.newGetWithMetadataOperation(K key, io.netty.channel.Channel preferredChannel) StatsOperationsFactory.newGetWithMetadataOperation(K key, io.netty.channel.Channel preferredChannel) CacheOperationsFactory.newIterationEndOperation(byte[] iterationId) DefaultCacheOperationsFactory.newIterationEndOperation(byte[] iterationId) DelegatingCacheOperationsFactory.newIterationEndOperation(byte[] iterationId) <K,E> HotRodOperation <IterationNextResponse<K, E>> CacheOperationsFactory.newIterationNextOperation(byte[] iterationId, KeyTracker segmentKeyTracker) <K,E> HotRodOperation <IterationNextResponse<K, E>> DefaultCacheOperationsFactory.newIterationNextOperation(byte[] iterationId, KeyTracker segmentKeyTracker) <K,E> HotRodOperation <IterationNextResponse<K, E>> DelegatingCacheOperationsFactory.newIterationNextOperation(byte[] iterationId, KeyTracker segmentKeyTracker) CacheOperationsFactory.newIterationStartOperation(String filterConverterFactory, byte[][] filterParams, org.infinispan.commons.util.IntSet segments, int batchSize, boolean metadata) DefaultCacheOperationsFactory.newIterationStartOperation(String filterConverterFactory, byte[][] filterParams, org.infinispan.commons.util.IntSet segments, int batchSize, boolean metadata) DelegatingCacheOperationsFactory.newIterationStartOperation(String filterConverterFactory, byte[][] filterParams, org.infinispan.commons.util.IntSet segments, int batchSize, boolean metadata) CacheOperationsFactory.newPingOperation()DefaultCacheOperationsFactory.newPingOperation()DelegatingCacheOperationsFactory.newPingOperation()ManagerOperationsFactory.newPingOperation(String cacheName) A ping operation for a specific cache to ensure it is running and receive its configuration details.ManagerOperationsFactory.newPrepareTransaction(String cacheName, Xid xid, boolean onePhaseCommit, List<Modification> modifications, boolean recoverable, long timeoutMs) CacheOperationsFactory.newPutAllBytesOperation(Map<byte[], byte[]> map, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) This method should not be invoked by callers normally as it bypasses other factory checks.DelegatingCacheOperationsFactory.newPutAllBytesOperation(Map<byte[], byte[]> map, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) StatsOperationsFactory.newPutAllBytesOperation(Map<byte[], byte[]> map, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> CacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> CacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit, Flag... flags) <K,V> HotRodOperation <MetadataValue<V>> DefaultCacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> DefaultCacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit, Flag... flags) <K,V> HotRodOperation <MetadataValue<V>> DelegatingCacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> DelegatingCacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit, Flag... flags) <K,V> HotRodOperation <MetadataValue<V>> ObjectRoutingCacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> ObjectRoutingCacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit, Flag... flags) <K,V> HotRodOperation <MetadataValue<V>> ServerRoutingCacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> ServerRoutingCacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit, Flag... flags) <K,V> HotRodOperation <MetadataValue<V>> StatsOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> StatsOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit, Flag... flags) <K,V> HotRodOperation <MetadataValue<V>> CacheOperationsFactory.newPutKeyValueOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> DefaultCacheOperationsFactory.newPutKeyValueOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> DelegatingCacheOperationsFactory.newPutKeyValueOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> ObjectRoutingCacheOperationsFactory.newPutKeyValueOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> ServerRoutingCacheOperationsFactory.newPutKeyValueOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> StatsOperationsFactory.newPutKeyValueOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) CacheOperationsFactory.newPutStreamNextOperation(int id, boolean lastChunk, io.netty.buffer.ByteBuf valueBytes, io.netty.channel.Channel channel) DelegatingCacheOperationsFactory.newPutStreamNextOperation(int id, boolean lastChunk, io.netty.buffer.ByteBuf valueBytes, io.netty.channel.Channel channel) StatsOperationsFactory.newPutStreamNextOperation(int id, boolean lastChunk, io.netty.buffer.ByteBuf valueBytes, io.netty.channel.Channel channel) CacheOperationsFactory.newPutStreamStartOperation(Object key, long version, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) DefaultCacheOperationsFactory.newPutStreamStartOperation(Object key, long version, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) DelegatingCacheOperationsFactory.newPutStreamStartOperation(Object key, long version, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) ObjectRoutingCacheOperationsFactory.newPutStreamStartOperation(Object key, long version, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) ServerRoutingCacheOperationsFactory.newPutStreamStartOperation(Object key, long version, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) ManagerOperationsFactory.newRecoveryOperation()CacheOperationsFactory.newRemoveClientListenerOperation(Object listener) DefaultCacheOperationsFactory.newRemoveClientListenerOperation(Object listener) DelegatingCacheOperationsFactory.newRemoveClientListenerOperation(Object listener) <K,V> HotRodOperation <VersionedOperationResponse<V>> CacheOperationsFactory.newRemoveIfUnmodifiedOperation(K key, long version) <K,V> HotRodOperation <VersionedOperationResponse<V>> DefaultCacheOperationsFactory.newRemoveIfUnmodifiedOperation(K key, long version) <K,V> HotRodOperation <VersionedOperationResponse<V>> DelegatingCacheOperationsFactory.newRemoveIfUnmodifiedOperation(K key, long version) <K,V> HotRodOperation <VersionedOperationResponse<V>> ObjectRoutingCacheOperationsFactory.newRemoveIfUnmodifiedOperation(K key, long version) <K,V> HotRodOperation <VersionedOperationResponse<V>> ServerRoutingCacheOperationsFactory.newRemoveIfUnmodifiedOperation(K key, long version) <K,V> HotRodOperation <VersionedOperationResponse<V>> StatsOperationsFactory.newRemoveIfUnmodifiedOperation(K key, long version) <V> HotRodOperation<MetadataValue<V>> CacheOperationsFactory.newRemoveOperation(Object key) <V> HotRodOperation<MetadataValue<V>> DefaultCacheOperationsFactory.newRemoveOperation(Object key) <V> HotRodOperation<MetadataValue<V>> DelegatingCacheOperationsFactory.newRemoveOperation(Object key) <V> HotRodOperation<MetadataValue<V>> ObjectRoutingCacheOperationsFactory.newRemoveOperation(Object key) <V> HotRodOperation<MetadataValue<V>> ServerRoutingCacheOperationsFactory.newRemoveOperation(Object key) <V> HotRodOperation<MetadataValue<V>> StatsOperationsFactory.newRemoveOperation(Object key) <K,V> HotRodOperation <VersionedOperationResponse<V>> CacheOperationsFactory.newReplaceIfUnmodifiedOperation(K key, V value, long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit, long version) <K,V> HotRodOperation <VersionedOperationResponse<V>> DefaultCacheOperationsFactory.newReplaceIfUnmodifiedOperation(K key, V value, long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit, long version) <K,V> HotRodOperation <VersionedOperationResponse<V>> DelegatingCacheOperationsFactory.newReplaceIfUnmodifiedOperation(K key, V value, long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit, long version) <K,V> HotRodOperation <VersionedOperationResponse<V>> ObjectRoutingCacheOperationsFactory.newReplaceIfUnmodifiedOperation(K key, V value, long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit, long version) <K,V> HotRodOperation <VersionedOperationResponse<V>> ServerRoutingCacheOperationsFactory.newReplaceIfUnmodifiedOperation(K key, V value, long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit, long version) <K,V> HotRodOperation <VersionedOperationResponse<V>> StatsOperationsFactory.newReplaceIfUnmodifiedOperation(K key, V value, long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit, long version) <K,V> HotRodOperation <V> CacheOperationsFactory.newReplaceOperation(K key, V valueBytes, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <V> DefaultCacheOperationsFactory.newReplaceOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <V> DelegatingCacheOperationsFactory.newReplaceOperation(K key, V valueBytes, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <V> ObjectRoutingCacheOperationsFactory.newReplaceOperation(K key, V valueBytes, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <V> ServerRoutingCacheOperationsFactory.newReplaceOperation(K key, V valueBytes, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <V> StatsOperationsFactory.newReplaceOperation(K key, V valueBytes, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) CacheOperationsFactory.newSizeOperation()DefaultCacheOperationsFactory.newSizeOperation()DelegatingCacheOperationsFactory.newSizeOperation()CacheOperationsFactory.newStatsOperation()DefaultCacheOperationsFactory.newStatsOperation()DelegatingCacheOperationsFactory.newStatsOperation()CacheOperationsFactory.newUpdateBloomFilterOperation(byte[] bloomFilterBits) DefaultCacheOperationsFactory.newUpdateBloomFilterOperation(byte[] bloomFilterBits) DelegatingCacheOperationsFactory.newUpdateBloomFilterOperation(byte[] bloomFilterBits) Methods in org.infinispan.client.hotrod.impl.operations that return types with arguments of type HotRodOperationModifier and TypeMethodDescriptionprotected Map<SocketAddress, HotRodOperation<Map<K, V>>> GetAllBulkOperation.gatherOperations(Function<Object, SocketAddress> routingFunction) protected Map<SocketAddress, HotRodOperation<Void>> PutAllBulkOperation.gatherOperations(Function<Object, SocketAddress> routingFunction) Method parameters in org.infinispan.client.hotrod.impl.operations with type arguments of type HotRodOperationModifier and TypeMethodDescriptionbooleanAbstractHotRodOperation.isInstanceOf(Class<? extends HotRodOperation<?>> klass) booleanDelegatingHotRodOperation.isInstanceOf(Class<? extends HotRodOperation<?>> klass) booleanHotRodOperation.isInstanceOf(Class<? extends HotRodOperation<?>> klass) Constructors in org.infinispan.client.hotrod.impl.operations with parameters of type HotRodOperationModifierConstructorDescriptionAdvancedHotRodOperation(HotRodOperation<OP> delegate, org.infinispan.api.common.CacheOptions options) AdvancedHotRodOperation(HotRodOperation<OP> delegate, org.infinispan.api.common.CacheOptions options, int privateFlags) protectedDelegatingHotRodOperation(HotRodOperation<T> delegate) RoutingObjectOperation(HotRodOperation<E> delegate, Object routingObject) protectedStatisticOperation(HotRodOperation<E> delegate, ClientStatistics statistics) Constructor parameters in org.infinispan.client.hotrod.impl.operations with type arguments of type HotRodOperationModifierConstructorDescriptionGetAllBulkOperation(Set<?> keys, DataFormat dataFormat, Function<Set<byte[]>, HotRodOperation<Map<K, V>>> setGetAllOperationFunction) PutAllBulkOperation(Map<?, ?> values, DataFormat dataFormat, Function<Map<byte[], byte[]>, HotRodOperation<Void>> setPutAllOperationFunction) -
Uses of HotRodOperation in org.infinispan.client.hotrod.impl.protocol
Methods in org.infinispan.client.hotrod.impl.protocol with parameters of type HotRodOperationModifier and TypeMethodDescriptionvoidCodec.writeHeader(io.netty.buffer.ByteBuf buf, long messageId, ClientTopology clientTopology, HotRodOperation<?> operation) Writes a request header with the given parameters to the transport and returns an updated header parameters.voidCodec30.writeHeader(io.netty.buffer.ByteBuf buf, long messageId, ClientTopology clientTopology, HotRodOperation<?> operation) protected voidCodec30.writeHeader(io.netty.buffer.ByteBuf buf, long messageId, ClientTopology clientTopology, HotRodOperation<?> operation, byte version) voidCodec31.writeHeader(io.netty.buffer.ByteBuf buf, long messageId, ClientTopology clientTopology, HotRodOperation<?> operation) voidCodec40.writeHeader(io.netty.buffer.ByteBuf buf, long messageId, ClientTopology clientTopology, HotRodOperation<?> operation) protected voidCodec40.writeHeader(io.netty.buffer.ByteBuf buf, long messageId, ClientTopology clientTopology, HotRodOperation<?> operation, byte version) voidCodec41.writeHeader(io.netty.buffer.ByteBuf buf, long messageId, ClientTopology clientTopology, HotRodOperation<?> operation) -
Uses of HotRodOperation in org.infinispan.client.hotrod.impl.transaction.operations
Classes in org.infinispan.client.hotrod.impl.transaction.operations that implement HotRodOperationModifier and TypeClassDescriptionclassRepresents a commit or rollback request from theTransactionManager.classIt forgets the transaction identified byXidin the server.classA prepare request from theTransactionManager.classA recovery request from theTransactionManager. -
Uses of HotRodOperation in org.infinispan.client.hotrod.impl.transport.netty
Methods in org.infinispan.client.hotrod.impl.transport.netty with type parameters of type HotRodOperationModifier and TypeMethodDescription<E,O extends HotRodOperation<E>>
CompletionStage<E> OperationDispatcher.executeBulk(String cacheName, HotRodBulkOperation<?, E, O> operation) Methods in org.infinispan.client.hotrod.impl.transport.netty that return types with arguments of type HotRodOperationModifier and TypeMethodDescriptionList<HotRodOperation<?>> OperationChannel.close()List<HotRodOperation<?>> ChannelHandler.closeChannel(SocketAddress address) ChannelHandler.gatherOperations()Queue<HotRodOperation<?>> OperationChannel.pendingChannelOperations()io.reactivex.rxjava3.core.Flowable<HotRodOperation<?>> ChannelHandler.pendingOperationFlowable()Map<Long, HotRodOperation<?>> HeaderDecoder.registeredOperationsById()Methods in org.infinispan.client.hotrod.impl.transport.netty with parameters of type HotRodOperationModifier and TypeMethodDescriptionvoidOperationChannel.accept(HotRodOperation<?> operation) <E> CompletionStage<E> OperationDispatcher.execute(HotRodOperation<E> operation) <E> CompletionStage<E> OperationDispatcher.executeOnSingleAddress(HotRodOperation<E> operation, SocketAddress socketAddress) voidOperationChannel.forceSendOperation(HotRodOperation<?> operation) Allows sending a command directly without enqueuing.<E> voidOperationDispatcher.handleResponse(HotRodOperation<E> op, long messageId, io.netty.channel.Channel channel, E returnValue, Throwable t) This method is called back whenever an operation is completed either through success (null Throwable) or through exception/error (non null Throwable)<E> voidOperationDispatcher.handleResponse(HotRodOperation<E> op, long messageId, SocketAddress unresolvedAddress, E returnValue, Throwable t) voidHeaderDecoder.refreshTimeout(HotRodOperation<?> op, long messageId) longHeaderDecoder.registerOperation(HotRodOperation<?> operation) voidOperationChannel.sendOperation(HotRodOperation<?> operation) <E> CompletionStage<E> ChannelHandler.submitOperation(HotRodOperation<E> operation, SocketAddress socketAddress) voidOperationDispatcher.updateTopology(String cacheName, HotRodOperation<?> operation, int responseTopologyId, InetSocketAddress[] addresses, SocketAddress[][] segmentOwners, short hashFunctionVersion) -
Uses of HotRodOperation in org.infinispan.client.hotrod.telemetry.impl
Classes in org.infinispan.client.hotrod.telemetry.impl that implement HotRodOperationMethods in org.infinispan.client.hotrod.telemetry.impl that return HotRodOperationModifier and TypeMethodDescriptionTelemetryCacheOperationsFactory.newClearOperation()<K,V> HotRodOperation <MetadataValue<V>> TelemetryCacheOperationsFactory.newPutIfAbsentOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <MetadataValue<V>> TelemetryCacheOperationsFactory.newPutKeyValueOperation(K key, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) <K,V> HotRodOperation <VersionedOperationResponse<V>> TelemetryCacheOperationsFactory.newRemoveIfUnmodifiedOperation(K key, long version) <V> HotRodOperation<MetadataValue<V>> TelemetryCacheOperationsFactory.newRemoveOperation(Object key) <K,V> HotRodOperation <VersionedOperationResponse<V>> TelemetryCacheOperationsFactory.newReplaceIfUnmodifiedOperation(K key, V value, long lifespan, TimeUnit lifespanTimeUnit, long maxIdle, TimeUnit maxIdleTimeUnit, long version) <K,V> HotRodOperation <V> TelemetryCacheOperationsFactory.newReplaceOperation(K key, V valueBytes, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) TelemetryCacheOperationsFactory.newSizeOperation()Constructors in org.infinispan.client.hotrod.telemetry.impl with parameters of type HotRodOperation