|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WritePolicy | |
---|---|
com.aerospike.client | |
com.aerospike.client.async |
Uses of WritePolicy in com.aerospike.client |
---|
Methods in com.aerospike.client with parameters of type WritePolicy | |
---|---|
void |
AerospikeClient.add(WritePolicy policy,
Key key,
Bin... bins)
Add integer bin values to existing record bin values. |
void |
AerospikeClient.append(WritePolicy policy,
Key key,
Bin... bins)
Append bin string values to existing record bin values. |
boolean |
AerospikeClient.delete(WritePolicy policy,
Key key)
Delete record for specified key. |
Record |
AerospikeClient.operate(WritePolicy policy,
Key key,
Operation... operations)
Perform multiple read/write operations on a single key in one batch call. |
void |
AerospikeClient.prepend(WritePolicy policy,
Key key,
Bin... bins)
Prepend bin string values to existing record bin values. |
void |
AerospikeClient.put(WritePolicy policy,
Key key,
Bin... bins)
Write record bin(s). |
void |
AerospikeClient.touch(WritePolicy policy,
Key key)
Create record if it does not already exist. |
Uses of WritePolicy in com.aerospike.client.async |
---|
Methods in com.aerospike.client.async with parameters of type WritePolicy | |
---|---|
void |
AsyncClient.add(WritePolicy policy,
WriteListener listener,
Key key,
Bin... bins)
Asynchronously add integer bin values to existing record bin values. |
void |
AsyncClient.append(WritePolicy policy,
WriteListener listener,
Key key,
Bin... bins)
Asynchronously append bin string values to existing record bin values. |
void |
AsyncClient.delete(WritePolicy policy,
DeleteListener listener,
Key key)
Asynchronously delete record for specified key. |
void |
AsyncClient.operate(WritePolicy policy,
RecordListener listener,
Key key,
Operation... operations)
Asynchronously perform multiple read/write operations on a single key in one batch call. |
void |
AsyncClient.prepend(WritePolicy policy,
WriteListener listener,
Key key,
Bin... bins)
Asynchronously prepend bin string values to existing record bin values. |
void |
AsyncClient.put(WritePolicy policy,
WriteListener listener,
Key key,
Bin... bins)
Asynchronously write record bin(s). |
void |
AsyncClient.touch(WritePolicy policy,
WriteListener listener,
Key key)
Asynchronously create record if it does not already exist. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |