Skip to main content
Version: 2.0.x

Examples

Let's try some example of creating and combining schedules.

  1. Stop retrying after a specified amount of time has elapsed:
val expMaxElapsed = (Schedule.exponential(10.milliseconds) >>> Schedule.elapsed).whileOutput(_ < 30.seconds)
  1. Retry only when a specific exception occurs:
import scala.concurrent.TimeoutException

val whileTimeout = Schedule.exponential(10.milliseconds) && Schedule.recurWhile[Throwable] {
case _: TimeoutException => true
case _ => false
}