Click or drag to resize
Akka.NETTimedFlowDsl.Timed<TIn, TOut, TOut2, TMat, TMat2> Method

Namespace:  Akka.Streams.Extra
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static Flow<TIn, TOut2, TMat2> Timed<TIn, TOut, TOut2, TMat, TMat2>(
	this Flow<TIn, TOut, TMat> flow,
	Func<Flow<TIn, TOut, TMat>, Flow<TIn, TOut2, TMat2>> measuredOps,
	Action<TimeSpan> onComplete
)

Parameters

flow
Type: Akka.Streams.Dsl.Flow<TIn, TOut, TMat>
TBD
measuredOps
Type: System.Func<Flow<TIn, TOut, TMat>, Flow<TIn, TOut2, TMat2>>
TBD
onComplete
Type: System.Action<TimeSpan>
TBD

Type Parameters

TIn
TBD
TOut
TBD
TOut2
TBD
TMat
TBD
TMat2
TBD

Return Value

Type: Flow<TIn, TOut2, TMat2>
TBD

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Flow<TIn, 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