Object

zio

Schedule

Related Doc: package zio

Permalink

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

    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[S, A, B](initial0: UIO[S], update0: (A, S) ⇒ UIO[Decision[S, B]]): Schedule[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[A, List[A]]

    Permalink

    See ZSchedule.collectAll

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

    Permalink

    See ZSchedule.collectUntil

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

    Permalink

    See ZSchedule.collectUntilM

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

    Permalink

    See ZSchedule.collectWhile

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

    Permalink

    See ZSchedule.collectWhileM

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

    Permalink

    See ZSchedule.decision

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

    Permalink

    See ZSchedule.delay

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

    Permalink

    See ZSchedule.delayed

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

    Permalink

    See ZSchedule.doUntil]

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

    Permalink

    See ZSchedule.doUntil

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

    Permalink

    See ZSchedule.doUntilM

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

    Permalink

    See ZSchedule.doWhile

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

    Permalink

    See ZSchedule.doWhileM

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

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

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

    Permalink

    See ZSchedule.exponential

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

    Permalink

    See ZSchedule.fibonacci

  24. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. final val forever: Schedule[Any, Int]

    Permalink

    See ZSchedule.forever

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

    Permalink

    See ZSchedule.fromFunction

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

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

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

    Permalink

    See ZSchedule.identity

  30. final def isInstanceOf[T0]: Boolean

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

    Permalink

    See ZSchedule.linear

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

    Permalink

    See ZSchedule.logInput

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

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

    Permalink

    See ZSchedule.never

  35. final def notify(): Unit

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

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

    Permalink

    See ZSchedule.once

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

    Permalink

    See ZSchedule.recurs

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

    Permalink

    See ZSchedule.spaced

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

    Permalink

    See ZSchedule.succeed

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

    Permalink

    See ZSchedule.succeedLazy

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

    Permalink
    Definition Classes
    AnyRef
  43. def toString(): String

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

    Permalink

    See ZSchedule.unfold

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

    Permalink

    See ZSchedule.unfoldM

  46. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped