object Schedule extends Schedule_Functions
- Alphabetic
- By Inheritance
- Schedule
- Schedule_Functions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- type ConformsR[A] = ConformsR1[A]
- Definition Classes
- Schedule → Schedule_Functions
- sealed trait ConformsR1[A] extends AnyRef
- Annotations
- @implicitNotFound("The environment type of all Schedule methods must be Any. If you want to use an environment, please use ZSchedule.")
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit val ConformsAnyProof: ConformsR1[Any]
- Definition Classes
- Schedule → Schedule_Functions
- final def apply[R, S, A, B](initial0: ZIO[R, Nothing, S], update0: (A, S) ⇒ ZIO[R, Nothing, Decision[S, B]])(implicit arg0: ConformsR[R]): ZSchedule[R, A, B]
- Definition Classes
- Schedule_Functions
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws(classOf[java.lang.CloneNotSupportedException])
- final def collect[A]: Schedule[A, List[A]]
A schedule that recurs forever, collecting all inputs into a list.
A schedule that recurs forever, collecting all inputs into a list.
- Definition Classes
- Schedule_Functions
- final val decision: Schedule[Any, Boolean]
A schedule that will recur forever with no delay, returning the decision from the steps.
A schedule that will recur forever with no delay, returning the decision from the steps. You can chain this onto the end of schedules to find out what their decision is, e.g.
Schedule.recurs(5) >>> Schedule.decision.- Definition Classes
- Schedule_Functions
- final val delay: Schedule[Any, Duration]
A schedule that will recur forever with no delay, returning the duration between steps.
A schedule that will recur forever with no delay, returning the duration between steps. You can chain this onto the end of schedules to find out what their delay is, e.g.
Schedule.spaced(1.second) >>> Schedule.delay.- Definition Classes
- Schedule_Functions
- final def delayed[R, A](s: ZSchedule[R, A, Duration])(implicit arg0: ConformsR[R]): ZSchedule[R, A, Duration]
A new schedule derived from the specified schedule which adds the delay specified as output to the existing duration.
A new schedule derived from the specified schedule which adds the delay specified as output to the existing duration.
- Definition Classes
- Schedule_Functions
- final def doUntil[A](f: (A) ⇒ Boolean): Schedule[A, A]
A schedule that recurs for until the predicate evaluates to true.
A schedule that recurs for until the predicate evaluates to true.
- Definition Classes
- Schedule_Functions
- final def doWhile[A](f: (A) ⇒ Boolean): Schedule[A, A]
A schedule that recurs for as long as the predicate evaluates to true.
A schedule that recurs for as long as the predicate evaluates to true.
- Definition Classes
- Schedule_Functions
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def exponential(base: Duration, factor: Double = 2.0): Schedule[Any, Duration]
A schedule that always recurs, but will wait a certain amount between repetitions, given by
base * factor.pow(n), wherenis the number of repetitions so far.A schedule that always recurs, but will wait a certain amount between repetitions, given by
base * factor.pow(n), wherenis the number of repetitions so far. Returns the current duration between recurrences.- Definition Classes
- Schedule_Functions
- final def fibonacci(one: Duration): Schedule[Any, Duration]
A schedule that always recurs, increasing delays by summing the preceding two delays (similar to the fibonacci sequence).
A schedule that always recurs, increasing delays by summing the preceding two delays (similar to the fibonacci sequence). Returns the current duration between recurrences.
- Definition Classes
- Schedule_Functions
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final val forever: Schedule[Any, Int]
A schedule that recurs forever, producing a count of inputs.
A schedule that recurs forever, producing a count of inputs.
- Definition Classes
- Schedule_Functions
- final def fromFunction[A, B](f: (A) ⇒ B): Schedule[A, B]
A schedule that recurs forever, mapping input values through the specified function.
A schedule that recurs forever, mapping input values through the specified function.
- Definition Classes
- Schedule_Functions
- final def getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def identity[A]: Schedule[A, A]
A schedule that recurs forever, returning each input as the output.
A schedule that recurs forever, returning each input as the output.
- Definition Classes
- Schedule_Functions
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def linear(base: Duration): Schedule[Any, Duration]
A schedule that always recurs, but will repeat on a linear time interval, given by
base * nwherenis the number of repetitions so far.A schedule that always recurs, but will repeat on a linear time interval, given by
base * nwherenis the number of repetitions so far. Returns the current duration between recurrences.- Definition Classes
- Schedule_Functions
- final def logInput[R, A](f: (A) ⇒ ZIO[R, Nothing, Unit])(implicit arg0: ConformsR[R]): ZSchedule[R, A, A]
A schedule that recurs forever, dumping input values to the specified sink, and returning those same values unmodified.
A schedule that recurs forever, dumping input values to the specified sink, and returning those same values unmodified.
- Definition Classes
- Schedule_Functions
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final val never: Schedule[Any, Nothing]
A schedule that never executes.
A schedule that never executes. Note that negating this schedule does not produce a schedule that executes.
- Definition Classes
- Schedule_Functions
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final val once: Schedule[Any, Unit]
A schedule that executes once.
A schedule that executes once.
- Definition Classes
- Schedule_Functions
- final def recurs(n: Int): Schedule[Any, Int]
A schedule that recurs the specified number of times.
A schedule that recurs the specified number of times. Returns the number of repetitions so far.
If 0 or negative numbers are given, the operation is not done at all so that in
(op: IO[E, A]).repeat(Schedule.recurs(0)), op is not done at all.- Definition Classes
- Schedule_Functions
- final def spaced(interval: Duration): Schedule[Any, Int]
A schedule that waits for the specified amount of time between each input.
A schedule that waits for the specified amount of time between each input. Returns the number of inputs so far.
|action|-----interval-----|action|-----interval-----|action|
- Definition Classes
- Schedule_Functions
- final def succeed[A](a: A): Schedule[Any, A]
A schedule that recurs forever, returning the constant for every output.
A schedule that recurs forever, returning the constant for every output.
- Definition Classes
- Schedule_Functions
- final def succeedLazy[A](a: ⇒ A): Schedule[Any, A]
A schedule that recurs forever, returning the constant for every output (by-name version).
A schedule that recurs forever, returning the constant for every output (by-name version).
- Definition Classes
- Schedule_Functions
- final def synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def unfold[A](a: ⇒ A)(f: (A) ⇒ A): Schedule[Any, A]
A schedule that always recurs without delay, and computes the output through recured application of a function to a base value.
A schedule that always recurs without delay, and computes the output through recured application of a function to a base value.
- Definition Classes
- Schedule_Functions
- final def unfoldM[R, A](a: ZIO[R, Nothing, A])(f: (A) ⇒ ZIO[R, Nothing, A])(implicit arg0: ConformsR[R]): ZSchedule[R, Any, A]
A schedule that always recurs without delay, and computes the output through recured application of a function to a base value.
A schedule that always recurs without delay, and computes the output through recured application of a function to a base value.
- Definition Classes
- Schedule_Functions
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws(classOf[java.lang.InterruptedException])