| Package | Description |
|---|---|
| com.aerospike.client | |
| com.aerospike.client.policy | |
| com.aerospike.client.task |
| Modifier and Type | Field and Description |
|---|---|
Policy |
AerospikeClient.readPolicyDefault
Default read policy that is used when read command policy is null.
|
| Modifier and Type | Method and Description |
|---|---|
Policy |
AerospikeClient.copyReadPolicyDefault()
Copy read policy default.
|
Policy |
IAerospikeClient.copyReadPolicyDefault()
Copy read policy default.
|
Policy |
AerospikeException.getPolicy()
Get transaction policy.
|
Policy |
AerospikeClient.getReadPolicyDefault()
Return read policy default.
|
Policy |
IAerospikeClient.getReadPolicyDefault()
Return read policy default.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AerospikeClient.createIndex(EventLoop eventLoop,
IndexListener listener,
Policy policy,
String namespace,
String setName,
String indexName,
String binName,
IndexType indexType,
IndexCollectionType indexCollectionType,
CTX... ctx)
Asynchronously create complex secondary index to be used on bins containing collections.
|
void |
IAerospikeClient.createIndex(EventLoop eventLoop,
IndexListener listener,
Policy policy,
String namespace,
String setName,
String indexName,
String binName,
IndexType indexType,
IndexCollectionType indexCollectionType,
CTX... ctx)
Asynchronously create complex secondary index to be used on bins containing collections.
|
IndexTask |
AerospikeClient.createIndex(Policy policy,
String namespace,
String setName,
String indexName,
String binName,
IndexType indexType)
Create scalar secondary index.
|
IndexTask |
IAerospikeClient.createIndex(Policy policy,
String namespace,
String setName,
String indexName,
String binName,
IndexType indexType)
Create scalar secondary index.
|
IndexTask |
AerospikeClient.createIndex(Policy policy,
String namespace,
String setName,
String indexName,
String binName,
IndexType indexType,
IndexCollectionType indexCollectionType,
CTX... ctx)
Create complex secondary index to be used on bins containing collections.
|
IndexTask |
IAerospikeClient.createIndex(Policy policy,
String namespace,
String setName,
String indexName,
String binName,
IndexType indexType,
IndexCollectionType indexCollectionType,
CTX... ctx)
Create complex secondary index to be used on bins containing collections.
|
void |
AerospikeClient.dropIndex(EventLoop eventLoop,
IndexListener listener,
Policy policy,
String namespace,
String setName,
String indexName)
Asynchronously delete secondary index.
|
void |
IAerospikeClient.dropIndex(EventLoop eventLoop,
IndexListener listener,
Policy policy,
String namespace,
String setName,
String indexName)
Asynchronously delete secondary index.
|
IndexTask |
AerospikeClient.dropIndex(Policy policy,
String namespace,
String setName,
String indexName)
Delete secondary index.
|
IndexTask |
IAerospikeClient.dropIndex(Policy policy,
String namespace,
String setName,
String indexName)
Delete secondary index.
|
void |
AerospikeClient.exists(EventLoop eventLoop,
ExistsListener listener,
Policy policy,
Key key)
Asynchronously determine if a record key exists.
|
void |
IAerospikeClient.exists(EventLoop eventLoop,
ExistsListener listener,
Policy policy,
Key key)
Asynchronously determine if a record key exists.
|
boolean |
AerospikeClient.exists(Policy policy,
Key key)
Determine if a record key exists.
|
boolean |
IAerospikeClient.exists(Policy policy,
Key key)
Determine if a record key exists.
|
void |
AerospikeClient.get(EventLoop eventLoop,
RecordListener listener,
Policy policy,
Key key)
Asynchronously read entire record for specified key.
|
void |
IAerospikeClient.get(EventLoop eventLoop,
RecordListener listener,
Policy policy,
Key key)
Asynchronously read entire record for specified key.
|
void |
AerospikeClient.get(EventLoop eventLoop,
RecordListener listener,
Policy policy,
Key key,
String... binNames)
Asynchronously read record header and bins for specified key.
|
void |
IAerospikeClient.get(EventLoop eventLoop,
RecordListener listener,
Policy policy,
Key key,
String... binNames)
Asynchronously read record header and bins for specified key.
|
Record |
AerospikeClient.get(Policy policy,
Key key)
Read entire record for specified key.
|
Record |
IAerospikeClient.get(Policy policy,
Key key)
Read entire record for specified key.
|
Record |
AerospikeClient.get(Policy policy,
Key key,
String... binNames)
Read record header and bins for specified key.
|
Record |
IAerospikeClient.get(Policy policy,
Key key,
String... binNames)
Read record header and bins for specified key.
|
void |
AerospikeClient.getHeader(EventLoop eventLoop,
RecordListener listener,
Policy policy,
Key key)
Asynchronously read record generation and expiration only for specified key.
|
void |
IAerospikeClient.getHeader(EventLoop eventLoop,
RecordListener listener,
Policy policy,
Key key)
Asynchronously read record generation and expiration only for specified key.
|
Record |
AerospikeClient.getHeader(Policy policy,
Key key)
Read record generation and expiration only for specified key.
|
Record |
IAerospikeClient.getHeader(Policy policy,
Key key)
Read record generation and expiration only for specified key.
|
RegisterTask |
AerospikeClient.register(Policy policy,
ClassLoader resourceLoader,
String resourcePath,
String serverPath,
Language language)
Register package located in a resource containing user defined functions with server.
|
RegisterTask |
IAerospikeClient.register(Policy policy,
ClassLoader resourceLoader,
String resourcePath,
String serverPath,
Language language)
Register package located in a resource containing user defined functions with server.
|
RegisterTask |
AerospikeClient.register(Policy policy,
String clientPath,
String serverPath,
Language language)
Register package located in a file containing user defined functions with server.
|
RegisterTask |
IAerospikeClient.register(Policy policy,
String clientPath,
String serverPath,
Language language)
Register package located in a file containing user defined functions with server.
|
RegisterTask |
AerospikeClient.registerUdfString(Policy policy,
String code,
String serverPath,
Language language)
Register UDF functions located in a code string with server.
|
RegisterTask |
IAerospikeClient.registerUdfString(Policy policy,
String code,
String serverPath,
Language language)
Register UDF functions located in a code string with server.
|
void |
AerospikeException.setPolicy(Policy policy)
Set transaction policy.
|
int |
BatchDelete.size(Policy parentPolicy)
Return wire protocol size.
|
int |
BatchRead.size(Policy parentPolicy)
Return wire protocol size.
|
int |
BatchRecord.size(Policy parentPolicy)
Return wire protocol size.
|
int |
BatchUDF.size(Policy parentPolicy)
Return wire protocol size.
|
int |
BatchWrite.size(Policy parentPolicy)
Return wire protocol size.
|
| Constructor and Description |
|---|
Timeout(Policy policy,
boolean client) |
Timeout(Policy policy,
int iteration) |
| Modifier and Type | Class and Description |
|---|---|
class |
BatchPolicy
Batch parent 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.
|
| Modifier and Type | Field and Description |
|---|---|
Policy |
ClientPolicy.readPolicyDefault
Default read policy that is used when read command's policy is null.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ClientPolicy.setReadPolicyDefault(Policy readPolicyDefault) |
| Constructor and Description |
|---|
BatchPolicy(Policy other)
Copy batch policy from another policy.
|
InfoPolicy(Policy other)
Copy timeout from generic Policy to InfoPolicy.
|
Policy(Policy other)
Copy policy from another policy.
|
QueryPolicy(Policy other)
Copy query policy from another policy.
|
ScanPolicy(Policy other)
Copy scan policy from another policy.
|
WritePolicy(Policy other)
Copy write policy from another policy.
|
| Constructor and Description |
|---|
ExecuteTask(com.aerospike.client.cluster.Cluster cluster,
Policy policy,
long taskId,
boolean isScan)
Initialize task with fields needed to query server nodes.
|
ExecuteTask(com.aerospike.client.cluster.Cluster cluster,
Policy policy,
Statement statement,
long taskId)
Initialize task with fields needed to query server nodes.
|
IndexTask(com.aerospike.client.cluster.Cluster cluster,
Policy policy,
String namespace,
String indexName,
boolean isCreate)
Initialize task with fields needed to query server nodes.
|
RegisterTask(com.aerospike.client.cluster.Cluster cluster,
Policy policy,
String packageName)
Initialize task with fields needed to query server nodes.
|
Task(com.aerospike.client.cluster.Cluster cluster,
Policy policy)
Initialize task with fields needed to query server nodes.
|
Copyright © 2012–2024 Aerospike, Inc. All rights reserved.