Click or drag to resize
Akka.NETSourceTickT 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.42 (1.2.3.42)
Syntax
public static Source<T, ICancelable> Tick<T>(
	TimeSpan initialDelay,
	TimeSpan interval,
	T tick
)

Parameters

initialDelay
Type: SystemTimeSpan
TBD
interval
Type: SystemTimeSpan
TBD
tick
Type: T
TBD

Type Parameters

T
TBD

Return Value

Type: SourceT, ICancelable
TBD
See Also