Click or drag to resize
Akka.NETSourceCycleT Method
Create SourceTOut, TMat that will continually produce given elements in specified order. Start a new cycled SourceTOut, TMat from the given elements. The producer stream of elements will continue infinitely by repeating the sequence of elements provided by function parameter.

Namespace:  Akka.Streams.Dsl
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static Source<T, NotUsed> Cycle<T>(
	Func<IEnumerator<T>> enumeratorFactory
)

Parameters

enumeratorFactory
Type: SystemFuncIEnumeratorT
TBD

Type Parameters

T
TBD

Return Value

Type: SourceT, NotUsed
TBD
See Also