Package | Description |
---|---|
com.aerospike.client | |
com.aerospike.client.async | |
com.aerospike.client.cdt |
Modifier and Type | Method and Description |
---|---|
static Operation |
Operation.add(Bin bin)
Create integer add database operation.
|
static Operation |
Operation.append(Bin bin)
Create string append database operation.
|
static Operation |
Operation.get()
Create read all record bins database operation.
|
static Operation |
Operation.get(String binName)
Create read bin database operation.
|
static Operation |
Operation.getHeader()
Create read record header database operation.
|
static Operation |
Operation.prepend(Bin bin)
Create string prepend database operation.
|
static Operation |
Operation.put(Bin bin)
Create set database operation.
|
static Operation |
Operation.touch()
Create touch database operation.
|
Modifier and Type | Method and Description |
---|---|
void |
AerospikeClient.operate(EventLoop eventLoop,
RecordListener listener,
WritePolicy policy,
Key key,
Operation... operations)
Asynchronously perform multiple read/write operations on a single key in one batch call.
|
void |
IAerospikeClient.operate(EventLoop eventLoop,
RecordListener listener,
WritePolicy policy,
Key key,
Operation... operations)
Asynchronously perform multiple read/write operations on a single key in one batch call.
|
Record |
AerospikeClient.operate(WritePolicy policy,
Key key,
Operation... operations)
Perform multiple read/write operations on a single key in one batch call.
|
Record |
IAerospikeClient.operate(WritePolicy policy,
Key key,
Operation... operations)
Perform multiple read/write operations on a single key in one batch call.
|
Modifier and Type | Method and Description |
---|---|
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 |
IAsyncClient.operate(WritePolicy policy,
RecordListener listener,
Key key,
Operation... operations)
Asynchronously perform multiple read/write operations on a single key in one batch call.
|
Modifier and Type | Method and Description |
---|---|
static Operation |
ListOperation.append(ListPolicy policy,
String binName,
Value value)
Create list append operation with policy.
|
static Operation |
ListOperation.append(String binName,
Value value)
Create default list append operation.
|
static Operation |
ListOperation.appendItems(ListPolicy policy,
String binName,
List<Value> list)
Create list append items operation with policy.
|
static Operation |
ListOperation.appendItems(String binName,
List<Value> list)
Create default list append items operation.
|
static Operation |
ListOperation.clear(String binName)
Create list clear operation.
|
static Operation |
MapOperation.clear(String binName)
Create map clear operation.
|
static Operation |
MapOperation.decrement(MapPolicy policy,
String binName,
Value key,
Value decr)
Create map decrement operation.
|
static Operation |
ListOperation.get(String binName,
int index)
Create list get operation.
|
static Operation |
ListOperation.getByIndex(String binName,
int index,
int returnType)
Create list get by index operation.
|
static Operation |
MapOperation.getByIndex(String binName,
int index,
int returnType)
Create map get by index operation.
|
static Operation |
ListOperation.getByIndexRange(String binName,
int index,
int returnType)
Create list get by index range operation.
|
static Operation |
MapOperation.getByIndexRange(String binName,
int index,
int returnType)
Create map get by index range operation.
|
static Operation |
ListOperation.getByIndexRange(String binName,
int index,
int count,
int returnType)
Create list get by index range operation.
|
static Operation |
MapOperation.getByIndexRange(String binName,
int index,
int count,
int returnType)
Create map get by index range operation.
|
static Operation |
MapOperation.getByKey(String binName,
Value key,
int returnType)
Create map get by key operation.
|
static Operation |
MapOperation.getByKeyList(String binName,
List<Value> keys,
int returnType)
Create map get by key list operation.
|
static Operation |
MapOperation.getByKeyRange(String binName,
Value keyBegin,
Value keyEnd,
int returnType)
Create map get by key range operation.
|
static Operation |
MapOperation.getByKeyRelativeIndexRange(String binName,
Value key,
int index,
int returnType)
Create map get by key relative to index range operation.
|
static Operation |
MapOperation.getByKeyRelativeIndexRange(String binName,
Value key,
int index,
int count,
int returnType)
Create map get by key relative to index range operation.
|
static Operation |
ListOperation.getByRank(String binName,
int rank,
int returnType)
Create list get by rank operation.
|
static Operation |
MapOperation.getByRank(String binName,
int rank,
int returnType)
Create map get by rank operation.
|
static Operation |
ListOperation.getByRankRange(String binName,
int rank,
int returnType)
Create list get by rank range operation.
|
static Operation |
MapOperation.getByRankRange(String binName,
int rank,
int returnType)
Create map get by rank range operation.
|
static Operation |
ListOperation.getByRankRange(String binName,
int rank,
int count,
int returnType)
Create list get by rank range operation.
|
static Operation |
MapOperation.getByRankRange(String binName,
int rank,
int count,
int returnType)
Create map get by rank range operation.
|
static Operation |
ListOperation.getByValue(String binName,
Value value,
int returnType)
Create list get by value operation.
|
static Operation |
MapOperation.getByValue(String binName,
Value value,
int returnType)
Create map get by value operation.
|
static Operation |
ListOperation.getByValueList(String binName,
List<Value> values,
int returnType)
Create list get by value list operation.
|
static Operation |
MapOperation.getByValueList(String binName,
List<Value> values,
int returnType)
Create map get by value list operation.
|
static Operation |
ListOperation.getByValueRange(String binName,
Value valueBegin,
Value valueEnd,
int returnType)
Create list get by value range operation.
|
static Operation |
MapOperation.getByValueRange(String binName,
Value valueBegin,
Value valueEnd,
int returnType)
Create map get by value range operation.
|
static Operation |
ListOperation.getByValueRelativeRankRange(String binName,
Value value,
int rank,
int returnType)
Create list get by value relative to rank range operation.
|
static Operation |
MapOperation.getByValueRelativeRankRange(String binName,
Value value,
int rank,
int returnType)
Create map get by value relative to rank range operation.
|
static Operation |
ListOperation.getByValueRelativeRankRange(String binName,
Value value,
int rank,
int count,
int returnType)
Create list get by value relative to rank range operation.
|
static Operation |
MapOperation.getByValueRelativeRankRange(String binName,
Value value,
int rank,
int count,
int returnType)
Create map get by value relative to rank range operation.
|
static Operation |
ListOperation.getRange(String binName,
int index)
Create list get range operation.
|
static Operation |
ListOperation.getRange(String binName,
int index,
int count)
Create list get range operation.
|
static Operation |
ListOperation.increment(ListPolicy policy,
String binName,
int index)
Create list increment operation with policy.
|
static Operation |
ListOperation.increment(ListPolicy policy,
String binName,
int index,
Value value)
Create list increment operation.
|
static Operation |
MapOperation.increment(MapPolicy policy,
String binName,
Value key,
Value incr)
Create map increment operation.
|
static Operation |
ListOperation.increment(String binName,
int index)
Create default list increment operation.
|
static Operation |
ListOperation.increment(String binName,
int index,
Value value)
Create default list increment operation.
|
static Operation |
ListOperation.insert(ListPolicy policy,
String binName,
int index,
Value value)
Create list insert operation with policy.
|
static Operation |
ListOperation.insert(String binName,
int index,
Value value)
Create default list insert operation.
|
static Operation |
ListOperation.insertItems(ListPolicy policy,
String binName,
int index,
List<Value> list)
Create list insert items operation with policy.
|
static Operation |
ListOperation.insertItems(String binName,
int index,
List<Value> list)
Create default list insert items operation.
|
static Operation |
ListOperation.pop(String binName,
int index)
Create list pop operation.
|
static Operation |
ListOperation.popRange(String binName,
int index)
Create list pop range operation.
|
static Operation |
ListOperation.popRange(String binName,
int index,
int count)
Create list pop range operation.
|
static Operation |
MapOperation.put(MapPolicy policy,
String binName,
Value key,
Value value)
Create map put operation.
|
static Operation |
MapOperation.putItems(MapPolicy policy,
String binName,
Map<Value,Value> map)
Create map put items operation
Server writes each map item to map bin and returns map size.
|
static Operation |
ListOperation.remove(String binName,
int index)
Create list remove operation.
|
static Operation |
ListOperation.removeByIndex(String binName,
int index,
int returnType)
Create list remove operation.
|
static Operation |
MapOperation.removeByIndex(String binName,
int index,
int returnType)
Create map remove operation.
|
static Operation |
ListOperation.removeByIndexRange(String binName,
int index,
int returnType)
Create list remove operation.
|
static Operation |
MapOperation.removeByIndexRange(String binName,
int index,
int returnType)
Create map remove operation.
|
static Operation |
ListOperation.removeByIndexRange(String binName,
int index,
int count,
int returnType)
Create list remove operation.
|
static Operation |
MapOperation.removeByIndexRange(String binName,
int index,
int count,
int returnType)
Create map remove operation.
|
static Operation |
MapOperation.removeByKey(String binName,
Value key,
int returnType)
Create map remove operation.
|
static Operation |
MapOperation.removeByKeyList(String binName,
List<Value> keys,
int returnType)
Create map remove operation.
|
static Operation |
MapOperation.removeByKeyRange(String binName,
Value keyBegin,
Value keyEnd,
int returnType)
Create map remove operation.
|
static Operation |
MapOperation.removeByKeyRelativeIndexRange(String binName,
Value key,
int index,
int returnType)
Create map remove by key relative to index range operation.
|
static Operation |
MapOperation.removeByKeyRelativeIndexRange(String binName,
Value key,
int index,
int count,
int returnType)
Create map remove by key relative to index range operation.
|
static Operation |
ListOperation.removeByRank(String binName,
int rank,
int returnType)
Create list remove operation.
|
static Operation |
MapOperation.removeByRank(String binName,
int rank,
int returnType)
Create map remove operation.
|
static Operation |
ListOperation.removeByRankRange(String binName,
int rank,
int returnType)
Create list remove operation.
|
static Operation |
MapOperation.removeByRankRange(String binName,
int rank,
int returnType)
Create map remove operation.
|
static Operation |
ListOperation.removeByRankRange(String binName,
int rank,
int count,
int returnType)
Create list remove operation.
|
static Operation |
MapOperation.removeByRankRange(String binName,
int rank,
int count,
int returnType)
Create map remove operation.
|
static Operation |
ListOperation.removeByValue(String binName,
Value value,
int returnType)
Create list remove operation.
|
static Operation |
MapOperation.removeByValue(String binName,
Value value,
int returnType)
Create map remove operation.
|
static Operation |
ListOperation.removeByValueList(String binName,
List<Value> values,
int returnType)
Create list remove operation.
|
static Operation |
MapOperation.removeByValueList(String binName,
List<Value> values,
int returnType)
Create map remove operation.
|
static Operation |
ListOperation.removeByValueRange(String binName,
Value valueBegin,
Value valueEnd,
int returnType)
Create list remove operation.
|
static Operation |
MapOperation.removeByValueRange(String binName,
Value valueBegin,
Value valueEnd,
int returnType)
Create map remove operation.
|
static Operation |
ListOperation.removeByValueRelativeRankRange(String binName,
Value value,
int rank,
int returnType)
Create list remove by value relative to rank range operation.
|
static Operation |
MapOperation.removeByValueRelativeRankRange(String binName,
Value value,
int rank,
int returnType)
Create map remove by value relative to rank range operation.
|
static Operation |
ListOperation.removeByValueRelativeRankRange(String binName,
Value value,
int rank,
int count,
int returnType)
Create list remove by value relative to rank range operation.
|
static Operation |
MapOperation.removeByValueRelativeRankRange(String binName,
Value value,
int rank,
int count,
int returnType)
Create map remove by value relative to rank range operation.
|
static Operation |
ListOperation.removeRange(String binName,
int index)
Create list remove range operation.
|
static Operation |
ListOperation.removeRange(String binName,
int index,
int count)
Create list remove range operation.
|
static Operation |
ListOperation.set(ListPolicy policy,
String binName,
int index,
Value value)
Create list set operation with policy.
|
static Operation |
ListOperation.set(String binName,
int index,
Value value)
Create list set operation.
|
static Operation |
MapOperation.setMapPolicy(MapPolicy policy,
String binName)
Create set map policy operation.
|
static Operation |
ListOperation.setOrder(String binName,
ListOrder order)
Create set list order operation.
|
static Operation |
ListOperation.size(String binName)
Create list size operation.
|
static Operation |
MapOperation.size(String binName)
Create map size operation.
|
static Operation |
ListOperation.sort(String binName,
int sortFlags)
Create list sort operation.
|
static Operation |
ListOperation.trim(String binName,
int index,
int count)
Create list trim operation.
|
Copyright ? 2012–2018 Aerospike, Inc. All rights reserved.