Source.tick

A periodical repetition of an arbitrary object.

Source operators

Signature

def tick[T](initialDelay: FiniteDuration, interval: FiniteDuration, tick: T): Source[T, Cancellable]

Description

A periodical repetition of an arbitrary object. Delay of first tick is specified separately from interval of the following ticks.

emits periodically, if there is downstream backpressure ticks are skipped

completes never

Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.