Package org.apache.pekko.pattern
Interface BackoffOptions
-
- All Known Implementing Classes:
BackoffOptionsImpl
public interface BackoffOptionsDeprecated.Use new API from BackoffOpts object instead. Since Akka 2.5.22.Configures a back-off supervisor actor. Start withBackoff.onStoporBackoff.onFailure. BackoffOptions is immutable, so be sure to chain methods like:val options = Backoff.onFailure(childProps, childName, minBackoff, maxBackoff, randomFactor) .withManualReset context.actorOf(BackoffSupervisor.props(options), name)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Propsprops()Deprecated.Returns the props to create the back-off supervisor.BackoffOptionswithAutoReset(scala.concurrent.duration.FiniteDuration resetBackoff)Deprecated.BackoffOptionswithDefaultStoppingStrategy()Deprecated.BackoffOptionswithFinalStopMessage(scala.Function1<java.lang.Object,java.lang.Object> isFinalStopMessage)Deprecated.BackoffOptionswithManualReset()Deprecated.BackoffOptionswithMaxNrOfRetries(int maxNrOfRetries)Deprecated.BackoffOptionswithReplyWhileStopped(java.lang.Object replyWhileStopped)Deprecated.BackoffOptionswithSupervisorStrategy(OneForOneStrategy supervisorStrategy)Deprecated.
-
-
-
Method Detail
-
props
Props props()
Deprecated.Returns the props to create the back-off supervisor.
-
withAutoReset
BackoffOptions withAutoReset(scala.concurrent.duration.FiniteDuration resetBackoff)
Deprecated.- See Also:
ExtendedBackoffOptions.withAutoReset
-
withDefaultStoppingStrategy
BackoffOptions withDefaultStoppingStrategy()
Deprecated.- See Also:
ExtendedBackoffOptions.withDefaultStoppingStrategy
-
withFinalStopMessage
BackoffOptions withFinalStopMessage(scala.Function1<java.lang.Object,java.lang.Object> isFinalStopMessage)
Deprecated.- See Also:
BackoffOnStopOptions.withFinalStopMessage
-
withManualReset
BackoffOptions withManualReset()
Deprecated.- See Also:
ExtendedBackoffOptions.withManualReset
-
withMaxNrOfRetries
BackoffOptions withMaxNrOfRetries(int maxNrOfRetries)
Deprecated.- See Also:
ExtendedBackoffOptions.withMaxNrOfRetries
-
withReplyWhileStopped
BackoffOptions withReplyWhileStopped(java.lang.Object replyWhileStopped)
Deprecated.- See Also:
ExtendedBackoffOptions.withReplyWhileStopped
-
withSupervisorStrategy
BackoffOptions withSupervisorStrategy(OneForOneStrategy supervisorStrategy)
Deprecated.- See Also:
ExtendedBackoffOptions.withSupervisorStrategy
-
-