Methods in org.infinispan.client.hotrod.impl 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)
|
RemoteCache |
RemoteCacheImpl.withFlags(Flag... flags)
|