Packages

package retry

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

Type Members

  1. sealed trait BackOff extends AnyRef
  2. case class RetryConfig(maxAttempts: Int, retryDuration: FiniteDuration, backOff: BackOff) extends Product with Serializable
  3. class RetryManager extends AnyRef

Value Members

  1. def retryBlocking[T](f: ⇒ T)(implicit config: RetryConfig): T
  2. def retryBlockingAsEither[T](f: ⇒ T)(implicit config: RetryConfig): Either[Throwable, T]
  3. def retryBlockingAsTry[T](f: ⇒ T)(implicit config: RetryConfig): Try[T]
  4. def retryFuture[T](f: ⇒ Future[T])(implicit config: RetryConfig, retryManager: RetryManager, ec: ExecutionContext): Future[T]
  5. object ExponentialBackOff extends BackOff
  6. object FixedBackOff extends BackOff
  7. object LinerBackOff extends BackOff
  8. object RetryConfig extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped