Object/Trait

zio

Schedule

Related Docs: trait Schedule | package zio

Permalink

object Schedule extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Schedule
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def apply[R, S, A, B](initial0: ZIO[R, Nothing, S], update0: (A, S) ⇒ ZIO[R, Nothing, S], extract0: (A, S) ⇒ B): Schedule[R, A, B]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def collectAll[A]: Schedule[Any, A, List[A]]

    Permalink

    A schedule that recurs forever, collecting all inputs into a list.

  8. final def collectUntil[A](f: (A) ⇒ Boolean): Schedule[Any, A, List[A]]

    Permalink

    A schedule that recurs until the condition f failes, collecting all inputs into a list.

  9. final def collectUntilM[A](f: (A) ⇒ UIO[Boolean]): Schedule[Any, A, List[A]]

    Permalink

    A schedule that recurs until the effectful condition f failes, collecting all inputs into a list.

  10. final def collectWhile[A](f: (A) ⇒ Boolean): Schedule[Any, A, List[A]]

    Permalink

    A schedule that recurs as long as the condition f holds, collecting all inputs into a list.

  11. final def collectWhileM[A](f: (A) ⇒ UIO[Boolean]): Schedule[Any, A, List[A]]

    Permalink

    A schedule that recurs as long as the effectful condition holds, collecting all inputs into a list.

  12. final def delayed[R <: Clock, A](s: Schedule[R, A, Duration]): Schedule[R, A, Duration]

    Permalink

    A new schedule derived from the specified schedule which transforms the delays into effectful sleeps.

  13. final def doUntil[A, B](pf: PartialFunction[A, B]): Schedule[Any, A, Option[B]]

    Permalink

    A schedule that recurs for until the input value becomes applicable to partial function and then map that value with given function.

  14. final def doUntil[A](f: (A) ⇒ Boolean): Schedule[Any, A, A]

    Permalink

    A schedule that recurs for until the predicate evaluates to true.

  15. final def doUntilEquals[A](a: A): Schedule[Any, A, A]

    Permalink

    A schedule that recurs for until the predicate is equal.

  16. final def doUntilM[A](f: (A) ⇒ UIO[Boolean]): Schedule[Any, A, A]

    Permalink

    A schedule that recurs for until the predicate evaluates to true.

  17. final def doWhile[A](f: (A) ⇒ Boolean): Schedule[Any, A, A]

    Permalink

    A schedule that recurs for as long as the predicate evaluates to true.

  18. final def doWhileEquals[A](a: A): Schedule[Any, A, A]

    Permalink

    A schedule that recurs for as long as the predicate is equal.

  19. final def doWhileM[A](f: (A) ⇒ UIO[Boolean]): Schedule[Any, A, A]

    Permalink

    A schedule that recurs for as long as the effectful predicate evaluates to true.

  20. final def duration(duration: Duration): Schedule[Clock, Any, Duration]

    Permalink

    A schedule that will recur until the specified duration elapses.

    A schedule that will recur until the specified duration elapses. Returns the total elapsed time.

  21. final val elapsed: Schedule[Clock, Any, Duration]

    Permalink

    A schedule that recurs forever without delay.

    A schedule that recurs forever without delay. Returns the elapsed time since the schedule began.

  22. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def exponential(base: Duration, factor: Double = 2.0): Schedule[Clock, Any, Duration]

    Permalink

    A schedule that always recurs, but will wait a certain amount between repetitions, given by base * factor.pow(n), where n is 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), where n is the number of repetitions so far. Returns the current duration between recurrences.

  25. final def fibonacci(one: Duration): Schedule[Clock, Any, Duration]

    Permalink

    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.

  26. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. final def fixed(interval: Duration): Schedule[Clock, Any, Int]

    Permalink

    A schedule that recurs on a fixed interval.

    A schedule that recurs on a fixed interval. Returns the number of repetitions of the schedule so far.

    If the action run between updates takes longer than the interval, then the action will be run immediately, but re-runs will not "pile up".

    |---------interval---------|---------interval---------|
    |action|                   |action|
    

  28. final val forever: Schedule[Any, Any, Int]

    Permalink

    A schedule that recurs forever, producing a count of repeats: 0, 1, 2, ...

  29. final def fromFunction[A, B](f: (A) ⇒ B): Schedule[Any, A, B]

    Permalink

    A schedule that recurs forever, mapping input values through the specified function.

  30. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  31. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  32. final def identity[A]: Schedule[Any, A, A]

    Permalink

    A schedule that recurs forever, returning each input as the output.

  33. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  34. final def linear(base: Duration): Schedule[Clock, Any, Duration]

    Permalink

    A schedule that always recurs, but will repeat on a linear time interval, given by base * n where n is the number of repetitions so far.

    A schedule that always recurs, but will repeat on a linear time interval, given by base * n where n is the number of repetitions so far. Returns the current duration between recurrences.

  35. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  36. final val never: Schedule[Any, Any, Nothing]

    Permalink

    A schedule that waits forever when updating or initializing.

  37. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  38. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  39. final val once: Schedule[Any, Any, Unit]

    Permalink

    A schedule that executes once.

  40. final def randomDelay(min: Duration, max: Duration): Schedule[Random with Clock, Any, Duration]

    Permalink

    A schedule that sleeps for random duration that is uniformly distributed in the given range.

    A schedule that sleeps for random duration that is uniformly distributed in the given range. The schedules output is the duration it has slept on the last update, or 0 if it hasn't updated yet.

  41. final def randomDelayNormal(mean: Duration, std: Duration): Schedule[Random with Clock, Any, Duration]

    Permalink

    A schedule that sleeps for random duration that is normally distributed.

    A schedule that sleeps for random duration that is normally distributed. The schedules output is the duration it has slept on the last update, or 0 if it hasn't updated yet.

  42. final def recurs(n: Int): Schedule[Any, Any, Int]

    Permalink

    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.

  43. final def spaced(interval: Duration): Schedule[Clock, Any, Int]

    Permalink

    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|
    

  44. final val stop: Schedule[Any, Any, Unit]

    Permalink

    A schedule that always fails.

  45. final def succeed[A](a: A): Schedule[Any, Any, A]

    Permalink

    A schedule that recurs forever, returning the constant for every output.

  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  47. final def tapInput[R, A](f: (A) ⇒ ZIO[R, Nothing, Unit]): Schedule[R, A, A]

    Permalink

    A schedule that recurs forever, dumping input values to the specified sink, and returning those same values unmodified.

  48. final def tapOutput[R, A](f: (A) ⇒ ZIO[R, Nothing, Unit]): Schedule[R, A, A]

    Permalink

    A schedule that recurs forever, dumping output values to the specified sink, and returning those same values unmodified.

  49. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  50. final def unfold[A](a: ⇒ A)(f: (A) ⇒ A): Schedule[Any, Any, A]

    Permalink

    A schedule that always recurs without delay, and computes the output through recured application of a function to a base value.

  51. final def unfoldM[R, A](a: ZIO[R, Nothing, A])(f: (A) ⇒ ZIO[R, Nothing, A]): Schedule[R, Any, A]

    Permalink

    A schedule that always recurs without delay, and computes the output through recured application of a function to a base value.

  52. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. final def succeedLazy[A](a: ⇒ A): Schedule[Any, Any, A]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use succeed

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped