c

akka.actor.typed

BackoffSupervisorStrategy

sealed abstract class BackoffSupervisorStrategy extends SupervisorStrategy

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BackoffSupervisorStrategy
  2. SupervisorStrategy
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getResetBackoffAfter: Duration
  2. abstract def loggingEnabled: Boolean
    Definition Classes
    SupervisorStrategy
  3. abstract def resetBackoffAfter: FiniteDuration
  4. abstract def withLoggingEnabled(enabled: Boolean): BackoffSupervisorStrategy
  5. abstract def withMaxRestarts(maxRestarts: Int): BackoffSupervisorStrategy

    Allow at most this number of failed restarts in a row.

    Allow at most this number of failed restarts in a row. Zero or negative disables the upper limit on restarts (and is the default)

  6. abstract def withResetBackoffAfter(timeout: Duration): BackoffSupervisorStrategy

    Java API: The back-off algorithm is reset if the actor does not crash within the specified resetBackoffAfter.

    Java API: The back-off algorithm is reset if the actor does not crash within the specified resetBackoffAfter. By default, the resetBackoffAfter has the same value as minBackoff.

  7. abstract def withResetBackoffAfter(timeout: FiniteDuration): BackoffSupervisorStrategy

    Scala API: The back-off algorithm is reset if the actor does not crash within the specified resetBackoffAfter.

    Scala API: The back-off algorithm is reset if the actor does not crash within the specified resetBackoffAfter. By default, the resetBackoffAfter has the same value as minBackoff.

  8. abstract def withStashCapacity(capacity: Int): BackoffSupervisorStrategy

    While restarting (waiting for backoff to expire and children to stop) incoming messages and signals are stashed, and delivered later to the newly restarted behavior.

    While restarting (waiting for backoff to expire and children to stop) incoming messages and signals are stashed, and delivered later to the newly restarted behavior. This property defines the capacity in number of messages of the stash buffer. If the capacity is exceed then additional incoming messages are dropped.

    By default the capacity is defined by config property akka.actor.typed.restart-stash-capacity.

  9. abstract def withStopChildren(enabled: Boolean): BackoffSupervisorStrategy

    Stop or keep child actors when the parent actor is restarted.

    Stop or keep child actors when the parent actor is restarted. By default child actors are stopped when parent is restarted.

    enabled

    if true then child actors are stopped, otherwise they are kept