Package | Description |
---|---|
org.infinispan.client.hotrod | |
org.infinispan.client.hotrod.impl | |
org.infinispan.client.hotrod.impl.operations | |
org.infinispan.client.hotrod.impl.protocol |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
RemoteCache<K,V> |
RemoteCache.withFlags(Flag... flags)
Applies one or more
Flag s to the scope of a single invocation. |
Modifier and Type | Method and Description |
---|---|
RemoteCache<K,V> |
RemoteCacheImpl.withFlags(Flag... flags) |
Modifier and Type | Field and Description |
---|---|
protected Flag[] |
HotRodOperation.flags |
Modifier and Type | Method and Description |
---|---|
void |
OperationsFactory.setFlags(Flag[] flags) |
Constructor and Description |
---|
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) |
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) |
Modifier and Type | Method and Description |
---|---|
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 © 2013 JBoss, a division of Red Hat. All Rights Reserved.