AsyncFlatMap<T> extension

Provides the same functions as the TimerM class, but for the Future<TimerM>. Used for chaining expressions after using any of the async functions on the original class.

on

Methods

asyncFlatMap<Z>(Future<TimerM<Z>> f(T value)) Future<TimerM<Z>>
asyncMap<Z>(Future<Z> f(T value)) Future<TimerM<Z>>
asyncMapTiming<Z>(String description, Future<Z> f(T value)) Future<TimerM<Z>>
flatMap<Z>(TimerM<Z> f(T value)) Future<TimerM<Z>>
map<Z>(Z f(T value)) Future<TimerM<Z>>
mapTiming<Z>(String description, Z f(T value)) Future<TimerM<Z>>