|  | TimedFlowDslTimedIntervalBetweenTIn, TOut, TMat Method | 
 
            Measures rolling interval between immediately subsequent "matching(o: O)" elements.
            
 
    Namespace: 
   Akka.Streams.Extra
    Assembly:
   Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
 Syntax
Syntaxpublic static Flow<TIn, TOut, TMat> TimedIntervalBetween<TIn, TOut, TMat>(
	this Flow<TIn, TOut, TMat> flow,
	Func<TOut, bool> matching,
	Action<TimeSpan> onInterval
)
[<ExtensionAttribute>]
static member TimedIntervalBetween : 
        flow : Flow<'TIn, 'TOut, 'TMat> * 
        matching : Func<'TOut, bool> * 
        onInterval : Action<TimeSpan> -> Flow<'TIn, 'TOut, 'TMat> 
Parameters
- flow
- Type: Akka.Streams.DslFlowTIn, TOut, TMat
 TBD
- matching
- Type: SystemFuncTOut, Boolean
 TBD
- onInterval
- Type: SystemActionTimeSpan
 TBD
Type Parameters
- TIn
- TBD
- TOut
- TBD
- TMat
- TBD
Return Value
Type: 
FlowTIn, 
TOut, 
TMatTBD
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
See Also