Effection Logo

type alias Stream

thefrontside/effection

type Stream = Operation<Subscription<T, TReturn>>

The Effection equivalent of an AsyncIterable.

Like async iterables, streams do not actually have state themselves, but contain the recipe for how to create a Subscription

Type Parameters

T

TReturn

See