Interface IActivityTask<TInput, TOutput>
- Namespace
- Songhay.Abstractions
- Assembly
- SonghayCore.dll
public interface IActivityTask<in TInput, TOutput>
Type Parameters
TInputThe type of the input.
TOutputThe type of the output.
- Extension Methods
Remarks
For detail aound why this definition exists, see https://github.com/BryanWilhite/SonghayCore/issues/83
Methods
StartAsync(TInput?)
Starts the IActivity asynchronously.
Task<TOutput?> StartAsync(TInput? input)
Parameters
inputTInput
Returns
- Task<TOutput>