Show / Hide Table of Contents

Interface IAsyncContinuation

A generic non-delegate continuation.

Namespace: UnityFx.Async
Assembly: UnityFx.Async-netstandard2.0.dll
Syntax
public interface IAsyncContinuation
Remarks

This interface is a great helper for combining functionality and reducing number of allocations. It is especially useful for implementing custom continuation operations.

Methods

| Improve this Doc View Source

Invoke(IAsyncOperation)

Invokes the continuation.

Declaration
void Invoke(IAsyncOperation op)
Parameters
Type Name Description
IAsyncOperation op

The completed antecedent operation.

See Also

IAsyncOperation
AsyncContinuationOptions
  • Improve this Doc
  • View Source
Back to top Copyright (c) 2017-2018 Alexander Bogarsukov