Packages

o

zio

Schedule

object Schedule

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def apply[S, A, B](initial0: UIO[S], update0: (A, S) ⇒ UIO[Decision[S, B]]): Schedule[A, B]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. final def collectAll[A]: Schedule[A, List[A]]

    See ZSchedule.collectAll

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

    See ZSchedule.collectUntil

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

    See ZSchedule.collectUntilM

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

    See ZSchedule.collectWhile

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

    See ZSchedule.collectWhileM

  12. final val decision: Schedule[Any, Boolean]

    See ZSchedule.decision

  13. final val delay: Schedule[Any, Duration]

    See ZSchedule.delay

  14. final def delayed[A](s: Schedule[A, Duration]): Schedule[A, Duration]

    See ZSchedule.delayed

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

    See ZSchedule.doUntil]

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

    See ZSchedule.doUntil

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

    See ZSchedule.doUntilEquals

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

    See ZSchedule.doUntilM

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

    See ZSchedule.doWhile

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

    See ZSchedule.doWhileEquals

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

    See ZSchedule.doWhileM

  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  24. final def exponential(base: Duration, factor: Double = 2.0): Schedule[Any, Duration]

    See ZSchedule.exponential

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

    See ZSchedule.fibonacci

  26. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. final val forever: Schedule[Any, Int]

    See ZSchedule.forever

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

    See ZSchedule.fromFunction

  29. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  31. final def identity[A]: Schedule[A, A]

    See ZSchedule.identity

  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. final def linear(base: Duration): Schedule[Any, Duration]

    See ZSchedule.linear

  34. final def logInput[A](f: (A) ⇒ UIO[Unit]): Schedule[A, A]

    See ZSchedule.logInput

  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final val never: Schedule[Any, Nothing]

    See ZSchedule.never

  37. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. final val once: Schedule[Any, Unit]

    See ZSchedule.once

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

    See ZSchedule.recurs

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

    See ZSchedule.spaced

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

    See ZSchedule.succeed

  43. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  44. def toString(): String
    Definition Classes
    AnyRef → Any
  45. final def unfold[A](a: ⇒ A)(f: (A) ⇒ A): Schedule[Any, A]

    See ZSchedule.unfold

  46. final def unfoldM[A](a: UIO[A])(f: (A) ⇒ UIO[A]): Schedule[Any, A]

    See ZSchedule.unfoldM

  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Deprecated Value Members

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

    (Since version 1.0.0) use succeed

Inherited from AnyRef

Inherited from Any

Ungrouped