| FlowOperationsMonitorTIn, TOut, 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 Flow<TIn, TOut, TMat2> Monitor<TIn, TOut, TMat, TMat2>(
this Flow<TIn, TOut, TMat> flow,
Func<TMat, IFlowMonitor, TMat2> combine
)
[<ExtensionAttribute>]
static member Monitor :
flow : Flow<'TIn, 'TOut, 'TMat> *
combine : Func<'TMat, IFlowMonitor, 'TMat2> -> Flow<'TIn, 'TOut, 'TMat2>
Parameters
- flow
- Type: Akka.Streams.DslFlowTIn, TOut, TMat
TBD - combine
- Type: SystemFuncTMat, IFlowMonitor, TMat2
TBD
Type Parameters
- TIn
- TBD
- TOut
- TBD
- TMat
- TBD
- TMat2
- TBD
Return Value
Type:
FlowTIn,
TOut,
TMat2TBD
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
FlowTIn,
TOut,
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