Package akka.pattern
Interface HandleBackoff
-
public interface HandleBackoff
INTERNAL APIImplements basic backoff handling for
internal.BackoffOnRestartSupervisor
andinternal.BackoffOnStopSupervisor
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description scala.Option<ActorRef>
child()
void
child_$eq(scala.Option<ActorRef> x$1)
java.lang.String
childName()
Props
childProps()
boolean
finalStopMessageReceived()
void
finalStopMessageReceived_$eq(boolean x$1)
scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit>
handleBackoff()
void
handleMessageToChild(java.lang.Object m)
void
preStart()
BackoffReset
reset()
int
restartCount()
void
restartCount_$eq(int x$1)
void
startChild()
-
-
-
Method Detail
-
child
scala.Option<ActorRef> child()
-
childName
java.lang.String childName()
-
childProps
Props childProps()
-
child_$eq
void child_$eq(scala.Option<ActorRef> x$1)
-
finalStopMessageReceived
boolean finalStopMessageReceived()
-
finalStopMessageReceived_$eq
void finalStopMessageReceived_$eq(boolean x$1)
-
handleBackoff
scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> handleBackoff()
-
handleMessageToChild
void handleMessageToChild(java.lang.Object m)
-
preStart
void preStart()
-
reset
BackoffReset reset()
-
restartCount
int restartCount()
-
restartCount_$eq
void restartCount_$eq(int x$1)
-
startChild
void startChild()
-
-