Table of Contents

Interface IActivityTask<TInput>

Namespace
Songhay.Abstractions
Assembly
SonghayCore.dll

Defines an Activity, optionally for IHost conventions, with Task support.

public interface IActivityTask<in TInput>

Type Parameters

TInput

The type of the input.

Extension Methods

Remarks

For detail around why this definition exists, see https://github.com/BryanWilhite/SonghayCore/issues/83

Methods

StartAsync(TInput?)

Starts the IActivity asynchronously.

Task StartAsync(TInput? input)

Parameters

input TInput

The input.

Returns

Task

See Also