Table of Contents

Interface IAsyncExecutable<TIn, TOut>

Namespace
Executables
Assembly
executables.dll

Represents an asynchronous executable operation.

public interface IAsyncExecutable<in TIn, TOut>

Type Parameters

TIn

Input type.

TOut

Output type.

Methods

GetExecutor()

Gets an async executor that performs this executable operation.

[Pure]
IAsyncExecutor<in TIn, TOut> GetExecutor()

Returns

IAsyncExecutor<TIn, TOut>

Asynchronous executor instance.