Uses of Class
com.aerospike.client.Operation

Packages that use Operation
com.aerospike.client   
com.aerospike.client.async   
 

Uses of Operation in com.aerospike.client
 

Methods in com.aerospike.client that return Operation
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(java.lang.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.
 

Methods in com.aerospike.client with parameters of type Operation
 Record AerospikeClient.operate(WritePolicy policy, Key key, Operation... operations)
          Perform multiple read/write operations on a single key in one batch call.
 

Uses of Operation in com.aerospike.client.async
 

Methods in com.aerospike.client.async with parameters of type Operation
 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.