sealed abstract class BackoffSupervisorStrategy extends SupervisorStrategy
- Alphabetic
- By Inheritance
- BackoffSupervisorStrategy
- SupervisorStrategy
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def getResetBackoffAfter: Duration
- abstract def logLevel: Level
- Definition Classes
- SupervisorStrategy
- abstract def loggingEnabled: Boolean
- Definition Classes
- SupervisorStrategy
- abstract def resetBackoffAfter: FiniteDuration
- abstract def withCriticalLogLevel(criticalLevel: Level, afterErrors: Int): BackoffSupervisorStrategy
Possibility to use another log level after a given number of errors.
Possibility to use another log level after a given number of errors. The initial errors are logged at the level defined with BackoffSupervisorStrategy.withLogLevel. For example, the first 3 errors can be logged at INFO level and thereafter at ERROR level.
The counter (and log level) is reset after the BackoffSupervisorStrategy.withResetBackoffAfter duration.
- abstract def withLogLevel(level: Level): BackoffSupervisorStrategy
- Definition Classes
- → SupervisorStrategy
- abstract def withLoggingEnabled(enabled: Boolean): BackoffSupervisorStrategy
- Definition Classes
- → SupervisorStrategy
- 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)
- 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, theresetBackoffAfter
has the same value asminBackoff
. - 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, theresetBackoffAfter
has the value of(minBackoff + maxBackoff) / 2
. - 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
. - 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
Not for user extension