Click or drag to resize
Akka.NETSourceOperationsMonitorTOut, TMat, TMat2 Method
Materializes to IFlowMonitor that allows monitoring of the the current flow. All events are propagated by the monitor unchanged. Note that the monitor inserts a memory barrier every time it processes an event, and may therefor affect performance. The combine function is used to combine the IFlowMonitor with this flow's materialized value.

Namespace:  Akka.Streams.Dsl
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax
public static Source<TOut, TMat2> Monitor<TOut, TMat, TMat2>(
	this Source<TOut, TMat> flow,
	Func<TMat, IFlowMonitor, TMat2> combine
)

Parameters

flow
Type: Akka.Streams.DslSourceTOut, TMat
TBD
combine
Type: SystemFuncTMat, IFlowMonitor, TMat2
TBD

Type Parameters

TOut
TBD
TMat
TBD
TMat2
TBD

Return Value

Type: SourceTOut, TMat2
TBD

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SourceTOut, TMat. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also