|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Policy | |
---|---|
com.aerospike.client | |
com.aerospike.client.async | |
com.aerospike.client.large | |
com.aerospike.client.policy |
Uses of Policy in com.aerospike.client |
---|
Methods in com.aerospike.client with parameters of type Policy | |
---|---|
void |
AerospikeClient.createIndex(Policy policy,
java.lang.String namespace,
java.lang.String setName,
java.lang.String indexName,
java.lang.String binName,
IndexType indexType)
Create secondary index. |
void |
AerospikeClient.dropIndex(Policy policy,
java.lang.String namespace,
java.lang.String setName,
java.lang.String indexName)
Delete secondary index. |
java.lang.Object |
AerospikeClient.execute(Policy policy,
Key key,
java.lang.String packageName,
java.lang.String functionName,
Value... args)
Execute user defined function on server and return results. |
void |
AerospikeClient.execute(Policy policy,
Statement statement,
java.lang.String packageName,
java.lang.String functionName,
Value... functionArgs)
Apply user defined function on records that match the statement filter. |
boolean |
AerospikeClient.exists(Policy policy,
Key key)
Determine if a record key exists. |
boolean[] |
AerospikeClient.exists(Policy policy,
Key[] keys)
Check if multiple record keys exist in one batch call. |
Record |
AerospikeClient.get(Policy policy,
Key key)
Read entire record for specified key. |
Record[] |
AerospikeClient.get(Policy policy,
Key[] keys)
Read multiple records for specified keys in one batch call. |
Record[] |
AerospikeClient.get(Policy policy,
Key[] keys,
java.lang.String... binNames)
Read multiple record headers and bins for specified keys in one batch call. |
Record |
AerospikeClient.get(Policy policy,
Key key,
java.lang.String... binNames)
Read record header and bins for specified key. |
Record |
AerospikeClient.getHeader(Policy policy,
Key key)
Read record generation and expiration only for specified key. |
Record[] |
AerospikeClient.getHeader(Policy policy,
Key[] keys)
Read multiple record header data for specified keys in one batch call. |
LargeList |
AerospikeClient.getLargeList(Policy policy,
Key key,
java.lang.String binName,
java.lang.String userModule)
Initialize large list operator. |
LargeMap |
AerospikeClient.getLargeMap(Policy policy,
Key key,
java.lang.String binName,
java.lang.String userModule)
Initialize large map operator. |
LargeSet |
AerospikeClient.getLargeSet(Policy policy,
Key key,
java.lang.String binName,
java.lang.String userModule)
Initialize large set operator. |
LargeStack |
AerospikeClient.getLargeStack(Policy policy,
Key key,
java.lang.String binName,
java.lang.String userModule)
Initialize large stack operator. |
void |
AerospikeClient.register(Policy policy,
java.lang.String clientPath,
java.lang.String serverPath,
Language language)
Register package containing user defined functions with server. |
Uses of Policy in com.aerospike.client.async |
---|
Methods in com.aerospike.client.async with parameters of type Policy | |
---|---|
void |
AsyncClient.exists(Policy policy,
ExistsArrayListener listener,
Key[] keys)
Asynchronously check if multiple record keys exist in one batch call. |
void |
AsyncClient.exists(Policy policy,
ExistsListener listener,
Key key)
Asynchronously determine if a record key exists. |
void |
AsyncClient.exists(Policy policy,
ExistsSequenceListener listener,
Key[] keys)
Asynchronously check if multiple record keys exist in one batch call. |
void |
AsyncClient.get(Policy policy,
RecordArrayListener listener,
Key[] keys)
Asynchronously read multiple records for specified keys in one batch call. |
void |
AsyncClient.get(Policy policy,
RecordArrayListener listener,
Key[] keys,
java.lang.String... binNames)
Asynchronously read multiple record headers and bins for specified keys in one batch call. |
void |
AsyncClient.get(Policy policy,
RecordListener listener,
Key key)
Asynchronously read entire record for specified key. |
void |
AsyncClient.get(Policy policy,
RecordListener listener,
Key key,
java.lang.String... binNames)
Asynchronously read record header and bins for specified key. |
void |
AsyncClient.get(Policy policy,
RecordSequenceListener listener,
Key[] keys)
Asynchronously read multiple records for specified keys in one batch call. |
void |
AsyncClient.get(Policy policy,
RecordSequenceListener listener,
Key[] keys,
java.lang.String... binNames)
Asynchronously read multiple record headers and bins for specified keys in one batch call. |
void |
AsyncClient.getHeader(Policy policy,
RecordArrayListener listener,
Key[] keys)
Asynchronously read multiple record header data for specified keys in one batch call. |
void |
AsyncClient.getHeader(Policy policy,
RecordListener listener,
Key key)
Asynchronously read record generation and expiration only for specified key. |
void |
AsyncClient.getHeader(Policy policy,
RecordSequenceListener listener,
Key[] keys)
Asynchronously read multiple record header data for specified keys in one batch call. |
Uses of Policy in com.aerospike.client.large |
---|
Constructors in com.aerospike.client.large with parameters of type Policy | |
---|---|
LargeList(AerospikeClient client,
Policy policy,
Key key,
java.lang.String binName,
java.lang.String userModule)
Initialize large list operator. |
|
LargeMap(AerospikeClient client,
Policy policy,
Key key,
java.lang.String binName,
java.lang.String userModule)
Initialize large map operator. |
|
LargeSet(AerospikeClient client,
Policy policy,
Key key,
java.lang.String binName,
java.lang.String userModule)
Initialize large set operator. |
|
LargeStack(AerospikeClient client,
Policy policy,
Key key,
java.lang.String binName,
java.lang.String userModule)
Initialize large stack operator. |
Uses of Policy in com.aerospike.client.policy |
---|
Subclasses of Policy in com.aerospike.client.policy | |
---|---|
class |
QueryPolicy
Container object for policy attributes used in query operations. |
class |
ScanPolicy
Container object for optional parameters used in scan operations. |
class |
WritePolicy
Container object for policy attributes used in write operations. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |