AsyncClient Exists Method Aerospike
Overload List

  NameDescription
Public methodExists(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. The policy can be used to specify timeouts and maximum concurrent threads.
(Inherited from AerospikeClient.)
Public methodExists(Policy, Key)
Determine if a record key exists. Return whether record exists or not. The policy can be used to specify timeouts.
(Inherited from AerospikeClient.)
Public methodExists(Policy,  Key )Obsolete.
Check if multiple record keys exist in one batch call. The returned boolean array is in positional order with the original key array order. The policy can be used to specify timeouts.
(Inherited from AerospikeClient.)
Public methodExists(BatchPolicy, ExistsArrayListener,  Key )
Asynchronously check if multiple record keys exist in one batch call. Schedule the array exists command with a channel selector and return. Another thread will process the command and send the results to the listener in a single call.

The policy can be used to specify timeouts.

Public methodExists(BatchPolicy, ExistsSequenceListener,  Key )
Asynchronously check if multiple record keys exist in one batch call. Schedule the exists command with a channel selector and return. Another thread will process the command and send the results to the listener in multiple unordered calls.

The policy can be used to specify timeouts.

Public methodExists(BatchPolicy, CancellationToken,  Key )
Asynchronously check if multiple record keys exist in one batch call. Create listener, call asynchronous array exists and return task monitor.

The policy can be used to specify timeouts.

Public methodExists(Policy, ExistsArrayListener,  Key )Obsolete.
Asynchronously check if multiple record keys exist in one batch call. Schedule the array exists command with a channel selector and return. Another thread will process the command and send the results to the listener in a single call.

The policy can be used to specify timeouts.

Public methodExists(Policy, ExistsListener, Key)
Asynchronously determine if a record key exists. Schedule the exists command with a channel selector and return. Another thread will process the command and send the results to the listener.

The policy can be used to specify timeouts.

Public methodExists(Policy, ExistsSequenceListener,  Key )Obsolete.
Asynchronously check if multiple record keys exist in one batch call. Schedule the exists command with a channel selector and return. Another thread will process the command and send the results to the listener in multiple unordered calls.

The policy can be used to specify timeouts.

Public methodExists(Policy, CancellationToken, Key)
Asynchronously determine if a record key exists. Create listener, call asynchronous exists and return task monitor.

The policy can be used to specify timeouts.

Public methodExists(Policy, CancellationToken,  Key )Obsolete.
Asynchronously check if multiple record keys exist in one batch call. Create listener, call asynchronous array exists and return task monitor.

The policy can be used to specify timeouts.

Back to Top
See Also