AsyncClientProxy Class

Aerospike proxy client based implementation of AsyncClient. The proxy client communicates with a proxy server via GRPC and HTTP/2. The proxy server relays the database commands to the Aerospike server. The proxy client does not have knowledge of Aerospike server nodes. Only the proxy server can communicate directly with Aerospike server nodes. GRPC is an async framework, but the code stubs provided some sync unary operations, which are the basis for some of the database operations in AerospikeClientProxy. This is the fully async implementation, for use with the async awaitable pattern. Note that not all of the methods in the original AerospikeClient and AsyncClient are applicable to the proxy client. All of the methods using a listener are marked as obsolete.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public class AsyncClientProxy : AerospikeClientProxy, 
	IAsyncClient, IAerospikeClient
Inheritance
Object    AerospikeClientProxy    AsyncClientProxy
Implements
IAerospikeClient, IAsyncClient

Constructors

AsyncClientProxy(AsyncClientPolicy, Host) Initialize asynchronous client with suitable hosts to seed the cluster map. The client policy is used to set defaults and size internal data structures. For each host connection that succeeds, the client will:
  • Add host to the cluster map
  • Request host's list of other nodes in cluster
  • Add these nodes to cluster map

In most cases, only one host is necessary to seed the cluster. The remaining hosts are added as future seeds in case of a complete network failure.

If one connection succeeds, the client is ready to process database requests. If all connections fail and the policy's failIfNotConnected is true, a connection exception will be thrown. Otherwise, the cluster will remain in a disconnected state until the server is activated.

AsyncClientProxy(String, Int32) Initialize asynchronous client. If the host connection succeeds, the client will:
  • Add host to the cluster map
  • Request host's list of other nodes in cluster
  • Add these nodes to cluster map

If the connection succeeds, the client is ready to process database requests. If the connection fails, the cluster will remain in a disconnected state until the server is activated.

AsyncClientProxy(AsyncClientPolicy, String, Int32) Initialize asynchronous client. The client policy is used to set defaults and size internal data structures. If the host connection succeeds, the client will:
  • Add host to the cluster map
  • Request host's list of other nodes in cluster
  • Add these nodes to cluster map

If the connection succeeds, the client is ready to process database requests. If the connection fails and the policy's failOnInvalidHosts is true, a connection exception will be thrown. Otherwise, the cluster will remain in a disconnected state until the server is activated.

Properties

batchDeletePolicyDefault Default delete policy used in batch delete commands.
(Inherited from AerospikeClientProxy)
BatchDeletePolicyDefault Default delete policy used in batch delete commands.
(Inherited from AerospikeClientProxy)
batchParentPolicyWriteDefault Default parent policy used in batch write commands. Parent policy fields include socketTimeout, totalTimeout, maxRetries, etc...
(Inherited from AerospikeClientProxy)
BatchParentPolicyWriteDefault Default parent policy used in batch write commands. Parent policy fields include socketTimeout, totalTimeout, maxRetries, etc...
(Inherited from AerospikeClientProxy)
batchPolicyDefault Default parent policy used in batch read commands. Parent policy fields include socketTimeout, totalTimeout, maxRetries, etc...
(Inherited from AerospikeClientProxy)
BatchPolicyDefault Default parent policy used in batch read commands.Parent policy fields include socketTimeout, totalTimeout, maxRetries, etc...
(Inherited from AerospikeClientProxy)
batchUDFPolicyDefault Default user defined function policy used in batch UDF excecute commands.
(Inherited from AerospikeClientProxy)
BatchUDFPolicyDefault Default user defined function policy used in batch UDF excecute commands.
(Inherited from AerospikeClientProxy)
batchWritePolicyDefault Default write policy used in batch operate commands. Write policy fields include generation, expiration, durableDelete, etc...
(Inherited from AerospikeClientProxy)
BatchWritePolicyDefault Default write policy used in batch operate commands. Write policy fields include generation, expiration, durableDelete, etc...
(Inherited from AerospikeClientProxy)
Cluster Cluster associated with this AerospikeClient instance.
(Inherited from AerospikeClientProxy)
Connected Return if we are ready to talk to the database server cluster.
(Inherited from AerospikeClientProxy)
Disposed
(Inherited from AerospikeClientProxy)
infoPolicyDefault Default info policy that is used when info command policy is null.
(Inherited from AerospikeClientProxy)
InfoPolicyDefault Default info policy that is used when info command policy is null.
(Inherited from AerospikeClientProxy)
Nodes Return array of active server nodes in the cluster.
(Inherited from AerospikeClientProxy)
queryPolicyDefault Default query policy that is used when query command policy is null.
(Inherited from AerospikeClientProxy)
QueryPolicyDefault Default query policy that is used when query command policy is null.
(Inherited from AerospikeClientProxy)
readPolicyDefault Default read policy that is used when read command policy is null.
(Inherited from AerospikeClientProxy)
ReadPolicyDefault Default read policy that is used when read command policy is null.
(Inherited from AerospikeClientProxy)
scanPolicyDefault Default scan policy that is used when scan command policy is null.
(Inherited from AerospikeClientProxy)
ScanPolicyDefault Default scan policy that is used when scan command policy is null.
(Inherited from AerospikeClientProxy)
writePolicyDefault Default write policy that is used when write command policy is null.
(Inherited from AerospikeClientProxy)
WritePolicyDefault Default write policy that is used when write command policy is null.
(Inherited from AerospikeClientProxy)

Methods

Add(WritePolicy, Key, Bin) Add integer/double bin values to existing record bin values. The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists.
(Inherited from AerospikeClientProxy)
Add(WritePolicy, WriteListener, Key, Bin) Not supported in proxy client
Obsolete.
Add(WritePolicy, CancellationToken, Key, Bin) Asynchronously add integer/double bin values to existing record bin values.

The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists.

Append(WritePolicy, Key, Bin) Append bin string values to existing record bin values. The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists. This call only works for string values.
(Inherited from AerospikeClientProxy)
Append(WritePolicy, WriteListener, Key, Bin) Not supported in proxy client
Obsolete.
Append(WritePolicy, CancellationToken, Key, Bin) Asynchronously append bin string values to existing record bin values.

The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists. This call only works for string values.

ChangePassword Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Close Close all client connections to database server nodes.
(Inherited from AerospikeClientProxy)
CreateIndex(Policy, String, String, String, String, IndexType) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
CreateIndex(Policy, String, String, String, String, IndexType, IndexCollectionType, CTX) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
CreateRole(AdminPolicy, String, IListPrivilege) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
CreateRole(AdminPolicy, String, IListPrivilege, IListString) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
CreateRole(AdminPolicy, String, IListPrivilege, IListString, Int32, Int32) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
CreateUser Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Delete(WritePolicy, Key) Delete record for specified key. Return whether record existed on server before deletion. The policy specifies the transaction timeout.
(Inherited from AerospikeClientProxy)
Delete(BatchPolicy, BatchDeletePolicy, Key) Delete records for specified keys. If a key is not found, the corresponding result resultCode will be KEY_NOT_FOUND_ERROR.

Requires server version 6.0+


(Inherited from AerospikeClientProxy)
Delete(WritePolicy, DeleteListener, Key) Not supported in proxy client
Obsolete.
Delete(WritePolicy, CancellationToken, Key) Asynchronously delete record for specified key.
Delete(BatchPolicy, BatchDeletePolicy, BatchRecordArrayListener, Key) Not supported in proxy client
Obsolete.
Delete(BatchPolicy, BatchDeletePolicy, BatchRecordSequenceListener, Key) Not supported in proxy client
Obsolete.
Delete(BatchPolicy, BatchDeletePolicy, CancellationToken, Key) Asynchronously delete records for specified keys.

Requires server version 6.0+

Dispose Close all client connections to database server nodes.
(Inherited from AerospikeClientProxy)
DropIndex Not supported by proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
DropRole Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
DropUser Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Execute(WritePolicy, Statement, Operation) Apply operations on records that match the background query statement filter. Records are not returned to the client. This asynchronous server call will return before the command is complete. The user can optionally wait for command completion by using the returned ExecuteTask instance.
(Inherited from AerospikeClientProxy)
Execute(WritePolicy, Key, String, String, Value) Execute user defined function on server and return results. The function operates on a single record. The package name is used to locate the udf file location:

udf file = <server udf dir>/<package name>.lua


(Inherited from AerospikeClientProxy)
Execute(WritePolicy, Statement, String, String, Value) Apply user defined function on records that match the background query statement filter. Records are not returned to the client. This asynchronous server call will return before the command is complete. The user can optionally wait for command completion by using the returned ExecuteTask instance.
(Inherited from AerospikeClientProxy)
Execute(BatchPolicy, BatchUDFPolicy, Key, String, String, Value) Execute user defined function on server for each key and return results. The package name is used to locate the udf file location:

udf file = <server udf dir>/<package name>.lua

Requires server version 6.0+


(Inherited from AerospikeClientProxy)
Execute(WritePolicy, ExecuteListener, Key, String, String, Value) Not supported in proxy client
Obsolete.
Execute(WritePolicy, CancellationToken, Key, String, String, Value) Asynchronously execute user defined function on server for a single record and return result.
Execute(BatchPolicy, BatchUDFPolicy, BatchRecordArrayListener, Key, String, String, Value) Not supported in proxy client
Obsolete.
Execute(BatchPolicy, BatchUDFPolicy, BatchRecordSequenceListener, Key, String, String, Value) Not supported in proxy client
Obsolete.
Execute(BatchPolicy, BatchUDFPolicy, CancellationToken, Key, String, String, Value) Asynchronously execute user defined function on server for each key. Create listener, call asynchronous delete and return task monitor.

Requires server version 6.0+

Exists(BatchPolicy, Key) Check if multiple record keys exist in one batch call. The returned boolean array is in positional order with the original key array order.
(Inherited from AerospikeClientProxy)
Exists(Policy, Key) Determine if a record key exists. Return whether record exists or not. The policy can be used to specify timeouts.
(Inherited from AerospikeClientProxy)
Exists(BatchPolicy, ExistsArrayListener, Key) Not supported in proxy client
Obsolete.
Exists(BatchPolicy, ExistsSequenceListener, Key) Not supported in proxy client
Obsolete.
Exists(BatchPolicy, CancellationToken, Key) Asynchronously check if multiple record keys exist in one batch call. Create listener, call asynchronous array exists and return task monitor.
Exists(Policy, ExistsListener, Key) Not supported in proxy client
Obsolete.
Exists(Policy, CancellationToken, Key) Asynchronously determine if a record key exists.
Get(BatchPolicy, Key) Read multiple records for specified keys in one batch call. The returned records are in positional order with the original key array order. If a key is not found, the positional record will be null.
(Inherited from AerospikeClientProxy)
Get(BatchPolicy, ListBatchRead) Read multiple records for specified batch keys in one batch call. This method allows different namespaces/bins to be requested for each key in the batch. The returned records are located in the same list. If the BatchRead key field is not found, the corresponding record field will be null.
(Inherited from AerospikeClientProxy)
Get(Policy, Key) Read entire record for specified key. If found, return record instance. If not found, return null. The policy can be used to specify timeouts.
(Inherited from AerospikeClientProxy)
Get(BatchPolicy, Key, Operation) Read multiple records for specified keys using read operations in one batch call. The returned records are in positional order with the original key array order. If a key is not found, the positional record will be null.
(Inherited from AerospikeClientProxy)
Get(BatchPolicy, Key, String) Read multiple record headers and bins for specified keys in one batch call. The returned records are in positional order with the original key array order. If a key is not found, the positional record will be null.
(Inherited from AerospikeClientProxy)
Get(BatchPolicy, BatchListListener, ListBatchRead) Not supported in proxy client
Obsolete.
Get(BatchPolicy, BatchSequenceListener, ListBatchRead) Not supported in proxy client
Obsolete.
Get(BatchPolicy, RecordArrayListener, Key) Not supported in proxy client
Obsolete.
Get(BatchPolicy, RecordSequenceListener, Key) Not supported in proxy client
Obsolete.
Get(BatchPolicy, CancellationToken, Key) Asynchronously read multiple records for specified keys in one batch call.

If a key is not found, the record will be null.

Get(BatchPolicy, CancellationToken, ListBatchRead) Asynchronously read multiple records for specified batch keys in one batch call. This method allows different namespaces/bins to be requested for each key in the batch. The returned records are located in the same list.
Get(Policy, Key, String) Read record header and bins for specified key. If found, return record instance. If not found, return null. The policy can be used to specify timeouts.
(Inherited from AerospikeClientProxy)
Get(Policy, RecordListener, Key) Not supported in proxy client
Obsolete.
Get(Policy, CancellationToken, Key) Asynchronously read entire record for specified key.
Get(BatchPolicy, RecordArrayListener, Key, Operation) Not supported in proxy client
Obsolete.
Get(BatchPolicy, RecordArrayListener, Key, String) Not supported in proxy client
Obsolete.
Get(BatchPolicy, RecordSequenceListener, Key, Operation) Not supported in proxy client
Obsolete.
Get(BatchPolicy, RecordSequenceListener, Key, String) Not supported in proxy client
Obsolete.
Get(BatchPolicy, CancellationToken, Key, Operation) Asynchronously read multiple record headers and bins for specified keys using read operations in one batch call.

If a key is not found, the record will be null.

Get(BatchPolicy, CancellationToken, Key, String) Asynchronously read multiple record headers and bins for specified keys in one batch call.

If a key is not found, the record will be null.

Get(Policy, RecordListener, Key, String) Not supported in proxy client
Obsolete.
Get(Policy, CancellationToken, Key, String) Asynchronously read record header and bins for specified key.
GetClusterStats Return operating cluster statistics.
(Inherited from AerospikeClientProxy)
GetHeader(BatchPolicy, Key) Read multiple record header data for specified keys in one batch call. The returned records are in positional order with the original key array order. If a key is not found, the positional record will be null.
(Inherited from AerospikeClientProxy)
GetHeader(Policy, Key) Read record generation and expiration only for specified key. Bins are not read. If found, return record instance. If not found, return null. The policy can be used to specify timeouts.
(Inherited from AerospikeClientProxy)
GetHeader(BatchPolicy, RecordArrayListener, Key) Not supported in proxy client
Obsolete.
GetHeader(BatchPolicy, RecordSequenceListener, Key) Not supported in proxy client
Obsolete.
GetHeader(BatchPolicy, CancellationToken, Key) Asynchronously read multiple record header data for specified keys in one batch call.

If a key is not found, the record will be null.

GetHeader(Policy, RecordListener, Key) Not supported in proxy client
Obsolete.
GetHeader(Policy, CancellationToken, Key) Asynchronously read record generation and expiration only for specified key. Bins are not read.
GrantPrivileges Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
GrantRoles Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Join(BatchPolicy, Key, Join) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Join(BatchPolicy, Key, String, Join) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Operate(BatchPolicy, ListBatchRecord) Read/Write multiple records for specified batch keys in one batch call. This method allows different namespaces/bins for each key in the batch. The returned records are located in the same list.

BatchRecord can be BatchRead, BatchWrite, BatchDelete or BatchUDF.

Requires server version 6.0+


(Inherited from AerospikeClientProxy)
Operate(BatchPolicy, BatchOperateListListener, ListBatchRecord) Not supported in proxy client
Obsolete.
Operate(BatchPolicy, BatchRecordSequenceListener, ListBatchRecord) Not supported in proxy client
Obsolete.
Operate(BatchPolicy, CancellationToken, ListBatchRecord) Asynchronously read/write multiple records for specified batch keys in one batch call.

Requires server version 6.0+

Operate(WritePolicy, Key, Operation) Perform multiple read/write operations on a single key in one batch call. An example would be to add an integer value to an existing record and then read the result, all in one database call.

The server executes operations in the same order as the operations array. Both scalar bin operations (Operation) and CDT bin operations (ListOperation, MapOperation) can be performed in same call.


(Inherited from AerospikeClientProxy)
Operate(BatchPolicy, BatchWritePolicy, Key, Operation) Perform read/write operations on multiple keys. If a key is not found, the corresponding result resultCode will be KEY_NOT_FOUND_ERROR.

Requires server version 6.0+


(Inherited from AerospikeClientProxy)
Operate(WritePolicy, RecordListener, Key, Operation) Not supported in proxy client
Obsolete.
Operate(WritePolicy, CancellationToken, Key, Operation) Asynchronously perform multiple read/write operations on a single key in one batch call.

An example would be to add an integer value to an existing record and then read the result, all in one database call.

The server executes operations in the same order as the operations array. Both scalar bin operations (Operation) and CDT bin operations (ListOperation, MapOperation) can be performed in same call.

Operate(BatchPolicy, BatchWritePolicy, BatchRecordArrayListener, Key, Operation) Not supported in proxy client
Obsolete.
Operate(BatchPolicy, BatchWritePolicy, BatchRecordSequenceListener, Key, Operation) Not supported in proxy client
Obsolete.
Operate(BatchPolicy, BatchWritePolicy, CancellationToken, Key, Operation) Asynchronously perform read/write operations on multiple keys.

Requires server version 6.0+

Prepend(WritePolicy, Key, Bin) Prepend bin string values to existing record bin values. The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists. This call works only for string values.
(Inherited from AerospikeClientProxy)
Prepend(WritePolicy, WriteListener, Key, Bin) Not supported in proxy client
Obsolete.
Prepend(WritePolicy, CancellationToken, Key, Bin) Asynchronously prepend bin string values to existing record bin values.

The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists. This call works only for string values.

Put(WritePolicy, Key, Bin) Write record bin(s). The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists.
(Inherited from AerospikeClientProxy)
Put(WritePolicy, WriteListener, Key, Bin) Not supported in proxy client
Obsolete.
Put(WritePolicy, CancellationToken, Key, Bin) Asynchronously write record bin(s).

The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists.

Query(QueryPolicy, Statement) Execute query on all server nodes and return records via the listener. This method will block until the query is complete.

If maxConcurrentNodes is not 1, the supplied listener must handle shared data in a thread-safe manner, because the listener will be called by multiple query threads (one thread per node) in parallel.

Requires server version 6.0+ if using a secondary index query.


(Inherited from AerospikeClientProxy)
Query(QueryPolicy, Statement, QueryListener) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Query(QueryPolicy, Statement, ActionKey, Record) Execute query and call action for each record returned from server.
(Inherited from AerospikeClientProxy)
Query(QueryPolicy, RecordSequenceListener, Statement) Not supported in proxy client
Obsolete.
Query(QueryPolicy, CancellationToken, Statement) Execute query on all server nodes and return records via the listener. This method will block until the query is complete. Listener callbacks are made within the scope of this call.

If maxConcurrentNodes is not 1, the supplied listener must handle shared data in a thread-safe manner, because the listener will be called by multiple query threads (one thread per node) in parallel.

Requires server version 6.0+ if using a secondary index query.

Query(QueryPolicy, Statement, PartitionFilter, QueryListener) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Query(QueryPolicy, CancellationToken, Statement, ActionKey, Record) Execute query and call action for each record returned from server.
QueryAggregate(QueryPolicy, Statement) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
QueryAggregate(QueryPolicy, Statement, ActionObject) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
QueryAggregate(QueryPolicy, Statement, String, String, Value) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
QueryPartitions(QueryPolicy, Statement, PartitionFilter) Execute query for specified partitions and return record iterator. The query executor puts records on a queue in separate threads. The calling thread concurrently pops records off the queue through the record iterator.

Requires server version 6.0+ if using a secondary index query.


(Inherited from AerospikeClientProxy)
QueryPartitions(QueryPolicy, Statement, PartitionFilter, CancellationToken)
(Inherited from AerospikeClientProxy)
QueryPartitions(QueryPolicy, RecordSequenceListener, Statement, PartitionFilter) Not supported in proxy client
Obsolete.
QueryPartitions(QueryPolicy, CancellationToken, Statement, PartitionFilter) Execute query for specified partitions and return record iterator. The query executor puts records on a queue in separate threads. The calling thread concurrently pops records off the queue through the record iterator.

Requires server version 6.0+ if using a secondary index query.

QueryRole Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
QueryRoles Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
QueryUser Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
QueryUsers Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Register(Policy, String, String, Language) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Register(Policy, Assembly, String, String, Language) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
RegisterUdfString Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
RemoveUdf Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
RevokePrivileges Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
RevokeRoles Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
ScanAll(ScanPolicy, String, String, String) Read all records in specified namespace and set.

This call will block until the scan is complete


(Inherited from AerospikeClientProxy)
ScanAll(ScanPolicy, String, String, ScanCallback, String) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
ScanAll(ScanPolicy, RecordSequenceListener, String, String, String) Not supported in proxy client
Obsolete.
ScanAll(ScanPolicy, CancellationToken, String, String, String) Asynchronously read all records in specified namespace and set.
ScanNode(ScanPolicy, Node, String, String, ScanCallback, String) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
ScanNode(ScanPolicy, String, String, String, ScanCallback, String) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
ScanPartitions(ScanPolicy, PartitionFilter, String, String, String) Read records in specified namespace, set and partition filter.

This call will block until the scan is complete


(Inherited from AerospikeClientProxy)
ScanPartitions(ScanPolicy, PartitionFilter, String, String, ScanCallback, String) Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
ScanPartitions(ScanPolicy, RecordSequenceListener, PartitionFilter, String, String, String) Not supported in proxy client
Obsolete.
ScanPartitions(ScanPolicy, CancellationToken, PartitionFilter, String, String, String) Asynchronously read records in specified namespace, set and partition filter.
SetQuotas Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
SetWhitelist Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
SetXDRFilter Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.
Touch(WritePolicy, Key) Reset record's time to expiration using the policy's expiration. Fail if the record does not exist.
(Inherited from AerospikeClientProxy)
Touch(WritePolicy, WriteListener, Key) Not supported in proxy client
Obsolete.
Touch(WritePolicy, CancellationToken, Key) Asynchronously reset record's time to expiration using the policy's expiration. Fail if the record does not exist.
Truncate Not supported in proxy client
(Inherited from AerospikeClientProxy)
Obsolete.

See Also