AsyncClient.Touched(WritePolicy, ExistsListener, Key) Method

Asynchronously reset record's time to expiration using the policy's expiration. Schedule the touched command with a channel selector and return. Another thread will process the command and send the results to the listener. If the record does not exist, it can't be created because the server deletes empty records.

If the record does not exist, send a value of false to OnSuccess(Key, Boolean)

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
C#
public void Touched(
	WritePolicy policy,
	ExistsListener listener,
	Key key
)

Parameters

policy  WritePolicy
write configuration parameters, pass in null for defaults
listener  ExistsListener
where to send results, pass in null for fire and forget
key  Key
unique record identifier

Implements

IAsyncClient.Touched(WritePolicy, ExistsListener, Key)

Exceptions

AerospikeExceptionif queue is full

See Also