Table of Contents

Interface IActivity<TInput, TOutput>

Namespace
Songhay.Abstractions
Assembly
SonghayCore.dll

Defines an Activity with output, optionally for IHost conventions.

public interface IActivity<in TInput, out TOutput>

Type Parameters

TInput

The type of the input.

TOutput

The type of the output.

Extension Methods

Methods

Start(TInput?)

Starts with the specified input and synchronously returns TOutput.

TOutput? Start(TInput? input)

Parameters

input TInput

The input.

Returns

TOutput

See Also

IActivity<TInput>