Table of Contents

CloudOperation<TResult, TError>

class in Coherence.Cloud
inherits from CloudOperation<TError>

Represents an asynchronous operation used to communicate with coherence Cloud with a result of type .

An async method can await the CloudOperation<TResult, TError> to wait until the operation has completed.

Similarly, a Coroutine can yield the CloudOperation<TResult, TError> to wait for it to complete.

ContinueWith(Action, TaskContinuationOptions) can also be used to perform an action after the operation has completed.

Type Parameters

TResult

Type of object returned if the operation succeeds.

TError

Type of object returned if the operation fails.

Constructors
CloudOperation(Task<TResult>)
CloudOperation(Task<TResult>, CancellationToken)
Properties
Result

The result of the operation, if it has completed successfully; otherwise, the default value of TResult.

task
Methods
ContinueWith(Action, TaskContinuationOptions)

Specify an action to perform after the operation has completed (IsCompleted becomes true.

Deconstruct(out TResult, out TError)
GetAwaiter()

Gets an object that can be used to await for this operation to complete. Awaiting the result of this method never causes an exception to be thrown. To handle errors you can either:

  1. Check if HasFailed is true and then examine the Error property for more details about what went wrong.
  2. Use the OnFail(Action<TError>) method to specify an action to perform if the operation fails.
OnFail(Action<TError>)

Specify an action to perform if the operation fails (HasFailed becomes true.

OnSuccess(Action<TResult>)

Specify an action to perform if the operation completes successfully (IsCompletedSuccessfully becomes true.

ResultToString(TResult)
ToString()
Operators
implicit operator TResult(CloudOperation<TResult, TError>)