| SourceTickT Method |
Elements are emitted periodically with the specified interval.
The tick element will be delivered to downstream consumers that has requested any elements.
If a consumer has not requested any elements at the point in time when the tick
element is produced it will not receive that tick element later. It will
receive new tick elements as soon as it has requested more elements.
Namespace:
Akka.Streams.Dsl
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public static Source<T, ICancelable> Tick<T>(
TimeSpan initialDelay,
TimeSpan interval,
T tick
)
static member Tick :
initialDelay : TimeSpan *
interval : TimeSpan *
tick : 'T -> Source<'T, ICancelable>
Parameters
- initialDelay
- Type: SystemTimeSpan
TBD - interval
- Type: SystemTimeSpan
TBD - tick
- Type: T
TBD
Type Parameters
- T
- TBD
Return Value
Type:
SourceT,
ICancelableTBD
See Also