| GraphStageLogicEmitMultipleT Method (OutletT, IEnumeratorT, Action) |
Emit a sequence of elements through the given outlet and continue with the given thunk
afterwards, suspending execution if necessary.
This action replaces the
OutHandler for the given outlet if suspension
is needed and reinstalls the current handler upon receiving an
OnPull
signal (before invoking the
andThen function).
Namespace:
Akka.Streams.Stage
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax protected void EmitMultiple<T>(
Outlet<T> outlet,
IEnumerator<T> enumerator,
Action andThen
)
member EmitMultiple :
outlet : Outlet<'T> *
enumerator : IEnumerator<'T> *
andThen : Action -> unit
Parameters
- outlet
- Type: Akka.StreamsOutletT
TBD - enumerator
- Type: System.Collections.GenericIEnumeratorT
TBD - andThen
- Type: SystemAction
TBD
Type Parameters
- T
- TBD
See Also