Schedule<R, E, I, O> class

Available Extensions

Properties

hashCode int
The hash code for this object.
no setterinherited
passthrough Schedule<R, E, I, I>
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

delay(Duration duration) Schedule<R, E, I, O>
driver<R2, E2>() ZIO<R2, E2, ScheduleDriver<R, E, I, O>>
map<B>(B f(O _)) Schedule<R, E, I, B>
mapZIO<B>(ZIO<R, Option<E>, B> f(O _)) Schedule<R, E, I, B>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
tap<X>(ZIO<R, Option<E>, X> f(O _)) Schedule<R, E, I, O>
times(int n) Schedule<R, E, I, O>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fixed<I>(Duration duration) Schedule<NoEnv, Never, I, int>
forever<I>() Schedule<NoEnv, Never, I, int>
recursN<I>(int n) Schedule<NoEnv, Never, I, int>
recursWhile<I>(bool f(I _)) Schedule<NoEnv, Never, I, int>
recursWhileZIO<R, E, I>(ZIO<R, E, bool> f(I _)) Schedule<R, E, I, int>