Interface IAsyncExecutable<TIn, TOut>
- Namespace
- Executables
- Assembly
- executables.dll
Represents an asynchronous executable operation.
public interface IAsyncExecutable<in TIn, TOut>
Type Parameters
TInInput type.
TOutOutput 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.