Schedules

oxygen.zio.Schedules
object Schedules

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Schedules.type

Members list

Value members

Concrete methods

def timeout(duration: Duration): WithState[Option[OffsetDateTime], Any, Any, Unit]

Will attempt to wait until the specified duration from the start.

Will attempt to wait until the specified duration from the start.

Attributes

Extensions

Extensions

extension [Env, In, Out1](a: Schedule[Env, In, Out1])
def &|[Out2](b: Schedule[Env, In, Out2])(using zip: Zippable[Out1, Out2]): WithState[(a.State, b.State), Env, In, zip.Out]

Combination of intersection and union. Will only recur if both schedules wish to, but will take the min delay of the two.

Combination of intersection and union. Will only recur if both schedules wish to, but will take the min delay of the two.

Attributes

def withTimeout(duration: Duration): WithState[(a.State, Option[OffsetDateTime]), Env, In, Out1]