  | TimedSourceDslTimedIntervalBetweenTIn, 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.129 (1.2.3.129)
Syntaxpublic static Source<TIn, TMat> TimedIntervalBetween<TIn, TMat>(
	this Source<TIn, TMat> source,
	Func<TIn, bool> matching,
	Action<TimeSpan> onInterval
)
[<ExtensionAttribute>]
static member TimedIntervalBetween : 
        source : Source<'TIn, 'TMat> * 
        matching : Func<'TIn, bool> * 
        onInterval : Action<TimeSpan> -> Source<'TIn, 'TMat> 
Parameters
- source
 - Type: Akka.Streams.DslSourceTIn, TMat
TBD - matching
 - Type: SystemFuncTIn, Boolean
TBD - onInterval
 - Type: SystemActionTimeSpan
TBD 
Type Parameters
- TIn
 - TBD
 - TMat
 - TBD
 
Return Value
Type: 
SourceTIn, 
TMatTBD
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
SourceTIn, 
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