object Schedule extends Serializable
- Alphabetic
- By Inheritance
- Schedule
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- final class UpdateService[-R, -A, +B, M] extends AnyVal
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
- def apply[R, S, A, B](initial0: URIO[R, S], update0: (A, S) ⇒ URIO[R, S], extract0: (A, S) ⇒ B): Schedule[R, A, B]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
collectAll[A]: Schedule[Any, A, List[A]]
A schedule that recurs forever, collecting all inputs into a list.
-
def
collectUntil[A](f: (A) ⇒ Boolean): Schedule[Any, A, List[A]]
A schedule that recurs until the condition f fails, collecting all inputs into a list.
-
def
collectUntilM[A](f: (A) ⇒ UIO[Boolean]): Schedule[Any, A, List[A]]
A schedule that recurs until the effectful condition f fails, collecting all inputs into a list.
-
def
collectWhile[A](f: (A) ⇒ Boolean): Schedule[Any, A, List[A]]
A schedule that recurs as long as the condition f holds, collecting all inputs into a list.
-
def
collectWhileM[A](f: (A) ⇒ UIO[Boolean]): Schedule[Any, A, List[A]]
A schedule that recurs as long as the effectful condition holds, collecting all inputs into a list.
-
def
delayed[R <: Clock, A](s: Schedule[R, A, Duration]): Schedule[R, A, Duration]
A new schedule derived from the specified schedule which transforms the delays into effectful sleeps.
-
def
doUntil[A, B](pf: PartialFunction[A, B]): Schedule[Any, A, Option[B]]
A schedule that recurs for until the input value becomes applicable to partial function and then map that value with given function.
-
def
doUntil[A](f: (A) ⇒ Boolean): Schedule[Any, A, A]
A schedule that recurs for until the predicate evaluates to true.
-
def
doUntilEquals[A](a: ⇒ A): Schedule[Any, A, A]
A schedule that recurs for until the predicate is equal.
-
def
doUntilM[A](f: (A) ⇒ UIO[Boolean]): Schedule[Any, A, A]
A schedule that recurs for until the predicate evaluates to true.
-
def
doWhile[A](f: (A) ⇒ Boolean): Schedule[Any, A, A]
A schedule that recurs for as long as the predicate evaluates to true.
-
def
doWhileEquals[A](a: ⇒ A): Schedule[Any, A, A]
A schedule that recurs for as long as the predicate is equal.
-
def
doWhileM[A](f: (A) ⇒ UIO[Boolean]): Schedule[Any, A, A]
A schedule that recurs for as long as the effectful predicate evaluates to true.
-
def
duration(duration: Duration): Schedule[Clock, Any, Duration]
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.
-
val
elapsed: Schedule[Clock, Any, Duration]
A schedule that recurs forever without delay.
A schedule that recurs forever without delay. Returns the elapsed time since the schedule began.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
exponential(base: Duration, factor: Double = 2.0): Schedule[Clock, Any, Duration]
A schedule that always recurs, but will wait a certain amount between repetitions, given by
base * factor.pow(n)
, wheren
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)
, wheren
is the number of repetitions so far. Returns the current duration between recurrences. -
def
fibonacci(one: Duration): Schedule[Clock, 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.
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fixed(interval: Duration): Schedule[Clock, Any, Int]
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|
-
val
forever: Schedule[Any, Any, Int]
A schedule that recurs forever, producing a count of repeats: 0, 1, 2, ...
-
def
fromDuration(duration: Duration): Schedule[Clock, Any, Duration]
A schedule that recurs once with the specified delay.
-
def
fromDurations(duration: Duration, durations: Duration*): Schedule[Clock, Any, Duration]
A schedule that recurs once for each of the specified durations, delaying each time for the length of the specified duration.
A schedule that recurs once for each of the specified durations, delaying each time for the length of the specified duration. Returns the length of the current duration between recurrences.
-
def
fromFunction[A, B](f: (A) ⇒ B): Schedule[Any, A, B]
A schedule that recurs forever, mapping input values through the specified function.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
identity[A]: Schedule[Any, A, A]
A schedule that recurs forever, returning each input as the output.
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
linear(base: Duration): Schedule[Clock, Any, Duration]
A schedule that always recurs, but will repeat on a linear time interval, given by
base * n
wheren
is the number of repetitions so far.A schedule that always recurs, but will repeat on a linear time interval, given by
base * n
wheren
is the number of repetitions so far. Returns the current duration between recurrences. -
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
val
never: Schedule[Any, Any, Nothing]
A schedule that waits forever when updating or initializing.
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
val
once: Schedule[Any, Any, Unit]
A schedule that executes once.
-
def
randomDelay(min: Duration, max: Duration): Schedule[Random with Clock, Any, Duration]
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.
-
def
randomDelayNormal(mean: Duration, std: Duration): Schedule[Random with Clock, Any, Duration]
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.
-
def
recurs(n: Int): Schedule[Any, 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 repeated at all so that in
(op: IO[E, A]).repeat(Schedule.recurs(0))
, op is only done once and repeated 0 times. -
def
spaced(interval: Duration): Schedule[Clock, 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|
-
val
stop: Schedule[Any, Any, Unit]
A schedule that always fails.
-
def
succeed[A](a: A): Schedule[Any, Any, A]
A schedule that recurs forever, returning the constant for every output.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
tapInput[R, A](f: (A) ⇒ URIO[R, Unit]): Schedule[R, A, A]
A schedule that recurs forever, dumping input values to the specified sink, and returning those same values unmodified.
-
def
tapOutput[R, A](f: (A) ⇒ URIO[R, Unit]): Schedule[R, A, A]
A schedule that recurs forever, dumping output values to the specified sink, and returning those same values unmodified.
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
unfold[A](a: ⇒ A)(f: (A) ⇒ A): Schedule[Any, Any, A]
A schedule that always recurs without delay, and computes the output through recured application of a function to a base value.
-
def
unfoldM[R, A](a: URIO[R, A])(f: (A) ⇒ URIO[R, A]): Schedule[R, Any, A]
A schedule that always recurs without delay, and computes the output through recured application of a function to a base value.
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()