Uses of Class
org.infinispan.client.hotrod.Flag

Packages that use Flag
org.infinispan.client.hotrod   
org.infinispan.client.hotrod.impl   
org.infinispan.client.hotrod.impl.operations   
org.infinispan.client.hotrod.impl.protocol   
 

Uses of Flag in org.infinispan.client.hotrod
 

Methods in org.infinispan.client.hotrod that return Flag
static Flag Flag.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Flag[] Flag.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.infinispan.client.hotrod with parameters of type Flag
 RemoteCache<K,V> RemoteCache.withFlags(Flag... flags)
          Applies one or more Flags to the scope of a single invocation.
 

Uses of Flag in org.infinispan.client.hotrod.impl
 

Methods in org.infinispan.client.hotrod.impl with parameters of type Flag
 RemoteCache<K,V> RemoteCacheImpl.withFlags(Flag... flags)
           
 

Uses of Flag in org.infinispan.client.hotrod.impl.operations
 

Fields in org.infinispan.client.hotrod.impl.operations declared as Flag
protected  Flag[] HotRodOperation.flags
           
 

Methods in org.infinispan.client.hotrod.impl.operations with parameters of type Flag
 void OperationsFactory.setFlags(Flag[] flags)
           
 

Constructors in org.infinispan.client.hotrod.impl.operations with parameters of type Flag
AbstractKeyOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags)
           
AbstractKeyValueOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags, byte[] value, int lifespan, int maxIdle)
           
BulkGetOperation(Codec codec, TransportFactory transportFactory, byte[] cacheName, AtomicInteger topologyId, Flag[] flags, int entryCount)
           
ClearOperation(Codec codec, TransportFactory transportFactory, byte[] cacheName, AtomicInteger topologyId, Flag[] flags)
           
ContainsKeyOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags)
           
FaultTolerantPingOperation(Codec codec, TransportFactory transportFactory, byte[] cacheName, AtomicInteger topologyId, Flag[] flags)
           
GetOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags)
           
GetWithVersionOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags)
           
HotRodOperation(Codec codec, Flag[] flags, byte[] cacheName, AtomicInteger topologyId)
           
PutIfAbsentOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags, byte[] value, int lifespan, int maxIdle)
           
PutOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags, byte[] value, int lifespan, int maxIdle)
           
RemoveIfUnmodifiedOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags, long version)
           
RemoveOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags)
           
ReplaceIfUnmodifiedOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags, byte[] value, int lifespan, int maxIdle, long version)
           
ReplaceOperation(Codec codec, TransportFactory transportFactory, byte[] key, byte[] cacheName, AtomicInteger topologyId, Flag[] flags, byte[] value, int lifespan, int maxIdle)
           
RetryOnFailureOperation(Codec codec, TransportFactory transportFactory, byte[] cacheName, AtomicInteger topologyId, Flag[] flags)
           
StatsOperation(Codec codec, TransportFactory transportFactory, byte[] cacheName, AtomicInteger topologyId, Flag[] flags)
           
 

Uses of Flag in org.infinispan.client.hotrod.impl.protocol
 

Methods in org.infinispan.client.hotrod.impl.protocol with parameters of type Flag
 void HotRodOperations.clear(Flag... flags)
           
 boolean HotRodOperations.containsKey(byte[] key, Flag... flags)
           
 HeaderParams HeaderParams.flags(Flag[] flags)
           
 byte[] HotRodOperations.get(byte[] key, Flag... flags)
           
 BinaryVersionedValue HotRodOperations.getWithVersion(byte[] key, Flag... flags)
          Returns null if the given key does not exist.
 byte[] HotRodOperations.put(byte[] key, byte[] value, int lifespan, int maxIdle, Flag... flags)
           
 byte[] HotRodOperations.putIfAbsent(byte[] key, byte[] value, int lifespan, int maxIdle, Flag... flags)
           
 byte[] HotRodOperations.remove(byte[] key, Flag... flags)
           
 VersionedOperationResponse HotRodOperations.removeIfUnmodified(byte[] key, long version, Flag... flags)
           
 byte[] HotRodOperations.replace(byte[] key, byte[] value, int lifespan, int maxIdle, Flag... flags)
           
 VersionedOperationResponse HotRodOperations.replaceIfUnmodified(byte[] key, byte[] value, int lifespan, int maxIdle, long version, Flag... flags)
           
 


-->

Copyright © 2012 JBoss, a division of Red Hat. All Rights Reserved.