Methods in org.infinispan.client.hotrod.impl.protocol with parameters of type Flag |
void |
HotRodOperationsImpl.clear(Flag... flags)
|
void |
HotRodOperations.clear(Flag... flags)
|
boolean |
HotRodOperationsImpl.containsKey(byte[] key,
Flag... flags)
|
boolean |
HotRodOperations.containsKey(byte[] key,
Flag... flags)
|
byte[] |
HotRodOperations.get(byte[] key,
Flag... flags)
|
byte[] |
HotRodOperationsImpl.get(byte[] key,
Flag[] flags)
|
BinaryVersionedValue |
HotRodOperationsImpl.getWithVersion(byte[] key,
Flag... flags)
|
BinaryVersionedValue |
HotRodOperations.getWithVersion(byte[] key,
Flag... flags)
Returns null if the given key does not exist. |
byte[] |
HotRodOperationsImpl.put(byte[] key,
byte[] value,
int lifespan,
int maxIdle,
Flag... flags)
|
byte[] |
HotRodOperations.put(byte[] key,
byte[] value,
int lifespan,
int maxIdle,
Flag... flags)
|
byte[] |
HotRodOperationsImpl.putIfAbsent(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)
|
byte[] |
HotRodOperationsImpl.remove(byte[] key,
Flag[] flags)
|
VersionedOperationResponse |
HotRodOperationsImpl.removeIfUnmodified(byte[] key,
long version,
Flag... flags)
Request: [header][key length][key][entry_version] |
VersionedOperationResponse |
HotRodOperations.removeIfUnmodified(byte[] key,
long version,
Flag... flags)
|
byte[] |
HotRodOperationsImpl.replace(byte[] key,
byte[] value,
int lifespan,
int maxIdle,
Flag... flags)
|
byte[] |
HotRodOperations.replace(byte[] key,
byte[] value,
int lifespan,
int maxIdle,
Flag... flags)
|
VersionedOperationResponse |
HotRodOperationsImpl.replaceIfUnmodified(byte[] key,
byte[] value,
int lifespan,
int maxIdle,
long version,
Flag... flags)
request : [header][key length][key][lifespan][max idle][entry_version][value length][value] response: If
ForceReturnPreviousValue has been passed, this responses will contain previous [value length][value] for that key. |
VersionedOperationResponse |
HotRodOperations.replaceIfUnmodified(byte[] key,
byte[] value,
int lifespan,
int maxIdle,
long version,
Flag... flags)
|
static long |
HotRodOperationsHelper.writeHeader(Transport transport,
short operationCode,
byte[] cacheName,
AtomicInteger topologyId,
Flag... flags)
|