ExecuteTaskProxy Class

Task used to poll for long running execute job completion.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public sealed class ExecuteTaskProxy : ExecuteTask
Inheritance
Object    BaseTask    ExecuteTask    ExecuteTaskProxy

Constructors

ExecuteTaskProxy Initialize task with fields needed to query server nodes.

Methods

IsDone Has task completed.
(Inherited from BaseTask)
QueryStatus Query all nodes for task completion status.
(Overrides ExecuteTaskQueryStatus)
Wait Wait for asynchronous task to complete using default sleep interval (1 second). The timeout is passed from the original task policy. If task is not complete by timeout, an exception is thrown. Do not timeout if timeout set to zero.
(Inherited from BaseTask)
Wait(Int32) Wait for asynchronous task to complete using given sleep interval in milliseconds. The timeout is passed from the original task policy. If task is not complete by timeout, an exception is thrown. Do not timeout if policy timeout set to zero.
(Inherited from BaseTask)
Wait(Int32, Int32) Wait for asynchronous task to complete using given sleep interval and timeout in milliseconds. If task is not complete by timeout, an exception is thrown. Do not timeout if timeout set to zero.
(Inherited from BaseTask)

See Also