Class Patterns$
- java.lang.Object
 - 
- org.apache.pekko.pattern.Patterns$
 
 
- 
public class Patterns$ extends java.lang.ObjectJava API: for Pekko patterns such asask,pipeand others which work withCompletionStage. 
- 
- 
Constructor Summary
Constructors Constructor Description Patterns$() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T> java.util.concurrent.CompletionStage<T>after(java.time.Duration duration, ClassicActorSystemProvider system, java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> value)Returns aCompletionStagethat will be completed with the success or failure of the provided Callable after the specified duration.<T> java.util.concurrent.CompletionStage<T>after(java.time.Duration duration, Scheduler scheduler, scala.concurrent.ExecutionContext context, java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> value)Returns aCompletionStagethat will be completed with the success or failure of the provided Callable after the specified duration.<T> java.util.concurrent.CompletionStage<T>after(java.time.Duration duration, Scheduler scheduler, scala.concurrent.ExecutionContext context, java.util.concurrent.CompletionStage<T> value)Deprecated.Use the overloaded one which accepts a Callable of CompletionStage instead.<T> scala.concurrent.Future<T>after(scala.concurrent.duration.FiniteDuration duration, Scheduler scheduler, scala.concurrent.ExecutionContext context, java.util.concurrent.Callable<scala.concurrent.Future<T>> value)Returns aFuturethat will be completed with the success or failure of the provided Callable after the specified duration.<T> scala.concurrent.Future<T>after(scala.concurrent.duration.FiniteDuration duration, Scheduler scheduler, scala.concurrent.ExecutionContext context, scala.concurrent.Future<T> value)Deprecated.Use the overload one which accepts a Callable of Future instead.scala.concurrent.Future<java.lang.Object>ask(ActorRef actor, java.lang.Object message, long timeoutMillis)Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aFutureholding the eventual reply message; this means that the target actor needs to send the result to thesenderreference provided.java.util.concurrent.CompletionStage<java.lang.Object>ask(ActorRef actor, java.lang.Object message, java.time.Duration timeout)Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aCompletionStageholding the eventual reply message; this means that the target actor needs to send the result to thesenderreference provided.scala.concurrent.Future<java.lang.Object>ask(ActorRef actor, java.lang.Object message, Timeout timeout)Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aFutureholding the eventual reply message; this means that the target actor needs to send the result to thesenderreference provided.scala.concurrent.Future<java.lang.Object>ask(ActorSelection selection, java.lang.Object message, long timeoutMillis)Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aFutureholding the eventual reply message; this means that the targetpekko.actor.ActorSelectionneeds to send the result to thesenderreference provided.java.util.concurrent.CompletionStage<java.lang.Object>ask(ActorSelection selection, java.lang.Object message, java.time.Duration timeout)Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aCompletionStageholding the eventual reply message; this means that the targetpekko.actor.ActorSelectionneeds to send the result to thesenderreference provided.scala.concurrent.Future<java.lang.Object>ask(ActorSelection selection, java.lang.Object message, Timeout timeout)Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aFutureholding the eventual reply message; this means that the targetpekko.actor.ActorSelectionneeds to send the result to thesenderreference provided.java.util.concurrent.CompletionStage<java.lang.Object>askWithReplyTo(ActorRef actor, Function<ActorRef,java.lang.Object> messageFactory, java.time.Duration timeout)A variation of ask which allows to implement "replyTo" pattern by including sender reference in message.scala.concurrent.Future<java.lang.Object>askWithReplyTo(ActorRef actor, Function<ActorRef,java.lang.Object> messageFactory, long timeoutMillis)A variation of ask which allows to implement "replyTo" pattern by including sender reference in message.scala.concurrent.Future<java.lang.Object>askWithReplyTo(ActorRef actor, Function<ActorRef,java.lang.Object> messageFactory, Timeout timeout)A variation of ask which allows to implement "replyTo" pattern by including sender reference in message.scala.concurrent.Future<java.lang.Object>askWithReplyTo(ActorSelection selection, Function<ActorRef,java.lang.Object> messageFactory, long timeoutMillis)A variation of ask which allows to implement "replyTo" pattern by including sender reference in message.java.util.concurrent.CompletionStage<java.lang.Object>askWithReplyTo(ActorSelection selection, Function<ActorRef,java.lang.Object> messageFactory, java.time.Duration timeout)A variation of ask which allows to implement "replyTo" pattern by including sender reference in message.java.util.concurrent.CompletionStage<java.lang.Object>askWithStatus(ActorRef actor, java.lang.Object message, java.time.Duration timeout)Use for messages whose response is known to be apekko.pattern.StatusReply.java.util.concurrent.CompletionStage<java.lang.Boolean>gracefulStop(ActorRef target, java.time.Duration timeout)Returns aCompletionStagethat will be completed with success (valuetrue) when existing messages of the target actor has been processed and the actor has been terminated.java.util.concurrent.CompletionStage<java.lang.Boolean>gracefulStop(ActorRef target, java.time.Duration timeout, java.lang.Object stopMessage)Returns aCompletionStagethat will be completed with success (valuetrue) when existing messages of the target actor has been processed and the actor has been terminated.scala.concurrent.Future<java.lang.Boolean>gracefulStop(ActorRef target, scala.concurrent.duration.FiniteDuration timeout)Returns aFuturethat will be completed with success (valuetrue) when existing messages of the target actor has been processed and the actor has been terminated.scala.concurrent.Future<java.lang.Boolean>gracefulStop(ActorRef target, scala.concurrent.duration.FiniteDuration timeout, java.lang.Object stopMessage)Returns aFuturethat will be completed with success (valuetrue) when existing messages of the target actor has been processed and the actor has been terminated.<T> PipeToSupport.PipeableCompletionStage<T>pipe(java.util.concurrent.CompletionStage<T> future, scala.concurrent.ExecutionContext context)When thisCompletionStagefinishes, send its result to the givenpekko.actor.ActorReforpekko.actor.ActorSelection.<T> PipeToSupport.PipeableFuture<T>pipe(scala.concurrent.Future<T> future, scala.concurrent.ExecutionContext context)Register an onComplete callback on thisFutureto send the result to the givenpekko.actor.ActorReforpekko.actor.ActorSelection.<T> java.util.concurrent.CompletionStage<T>retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor, ClassicActorSystemProvider system)Returns an internally retryingCompletionStageThe first attempt will be made immediately, each subsequent attempt will be made with a backoff time, if the previous attempt failed.<T> java.util.concurrent.CompletionStage<T>retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor, Scheduler scheduler, scala.concurrent.ExecutionContext ec)Returns an internally retryingCompletionStageThe first attempt will be made immediately, each subsequent attempt will be made with a backoff time, if the previous attempt failed.<T> java.util.concurrent.CompletionStage<T>retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, java.time.Duration delay, ClassicActorSystemProvider system)Returns an internally retryingCompletionStageThe first attempt will be made immediately, and each subsequent attempt will be made after 'delay'.<T> java.util.concurrent.CompletionStage<T>retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, java.time.Duration delay, Scheduler scheduler, scala.concurrent.ExecutionContext ec)Returns an internally retryingCompletionStageThe first attempt will be made immediately, and each subsequent attempt will be made after 'delay'.<T> java.util.concurrent.CompletionStage<T>retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, java.util.function.IntFunction<java.util.Optional<java.time.Duration>> delayFunction, Scheduler scheduler, scala.concurrent.ExecutionContext context)Returns an internally retryingCompletionStage.<T> java.util.concurrent.CompletionStage<T>retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, scala.concurrent.ExecutionContext ec)Returns an internally retryingCompletionStageThe first attempt will be made immediately, each subsequent attempt will be made immediately if the previous attempt failed.<T> scala.concurrent.Future<T>retry(java.util.concurrent.Callable<scala.concurrent.Future<T>> attempt, int attempts, scala.concurrent.duration.FiniteDuration delay, Scheduler scheduler, scala.concurrent.ExecutionContext context)Returns an internally retryingFutureThe first attempt will be made immediately, and each subsequent attempt will be made after 'delay'. 
 - 
 
- 
- 
Field Detail
- 
MODULE$
public static final Patterns$ MODULE$
Static reference to the singleton instance of this Scala object. 
 - 
 
- 
Method Detail
- 
ask
public scala.concurrent.Future<java.lang.Object> ask(ActorRef actor, java.lang.Object message, Timeout timeout)
Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aFutureholding the eventual reply message; this means that the target actor needs to send the result to thesenderreference provided.The Future will be completed with an
pekko.pattern.AskTimeoutExceptionafter the given timeout has expired; this is independent from any timeout applied while awaiting a result for this future (i.e. inAwait.result(..., timeout)). A typical reason forAskTimeoutExceptionis that the recipient actor didn't send a reply.Warning: When using future callbacks, inside actors you need to carefully avoid closing over the containing actor’s object, i.e. do not call methods or access mutable state on the enclosing actor from within the callback. This would break the actor encapsulation and may introduce synchronization bugs and race conditions because the callback will be scheduled concurrently to the enclosing actor. Unfortunately there is not yet a way to detect these illegal accesses at compile time.
Recommended usage:
final Future<Object> f = Patterns.ask(worker, request, timeout); f.onSuccess(new Procedure<Object>() { public void apply(Object o) { nextActor.tell(new EnrichedResult(request, o)); } }); 
- 
ask
public java.util.concurrent.CompletionStage<java.lang.Object> ask(ActorRef actor, java.lang.Object message, java.time.Duration timeout)
Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aCompletionStageholding the eventual reply message; this means that the target actor needs to send the result to thesenderreference provided.The CompletionStage will be completed with an
pekko.pattern.AskTimeoutExceptionafter the given timeout has expired; this is independent from any timeout applied while awaiting a result for this future (i.e. inAwait.result(..., timeout)). A typical reason forAskTimeoutExceptionis that the recipient actor didn't send a reply.Warning: When using future callbacks, inside actors you need to carefully avoid closing over the containing actor’s object, i.e. do not call methods or access mutable state on the enclosing actor from within the callback. This would break the actor encapsulation and may introduce synchronization bugs and race conditions because the callback will be scheduled concurrently to the enclosing actor. Unfortunately there is not yet a way to detect these illegal accesses at compile time.
Recommended usage:
final CompletionStage<Object> f = Patterns.ask(worker, request, duration); f.thenRun(result -> nextActor.tell(new EnrichedResult(request, result))); 
- 
askWithStatus
public java.util.concurrent.CompletionStage<java.lang.Object> askWithStatus(ActorRef actor, java.lang.Object message, java.time.Duration timeout)
Use for messages whose response is known to be apekko.pattern.StatusReply. When apekko.pattern.StatusReply#successresponse arrives the future is completed with the wrapped value, if apekko.pattern.StatusReply#errorarrives the future is instead failed. 
- 
askWithReplyTo
public scala.concurrent.Future<java.lang.Object> askWithReplyTo(ActorRef actor, Function<ActorRef,java.lang.Object> messageFactory, Timeout timeout)
A variation of ask which allows to implement "replyTo" pattern by including sender reference in message.final Future<Object> f = Patterns.askWithReplyTo( worker, replyTo -> new Request(replyTo), timeout); 
- 
askWithReplyTo
public java.util.concurrent.CompletionStage<java.lang.Object> askWithReplyTo(ActorRef actor, Function<ActorRef,java.lang.Object> messageFactory, java.time.Duration timeout)
A variation of ask which allows to implement "replyTo" pattern by including sender reference in message.final CompletionStage<Object> f = Patterns.askWithReplyTo( worker, askSender -> new Request(askSender), timeout);- Parameters:
 actor- the actor to be askedmessageFactory- function taking an actor ref and returning the message to be senttimeout- the timeout for the response before failing the returned completion stage
 
- 
ask
public scala.concurrent.Future<java.lang.Object> ask(ActorRef actor, java.lang.Object message, long timeoutMillis)
Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aFutureholding the eventual reply message; this means that the target actor needs to send the result to thesenderreference provided.The Future will be completed with an
pekko.pattern.AskTimeoutExceptionafter the given timeout has expired; this is independent from any timeout applied while awaiting a result for this future (i.e. inAwait.result(..., timeout)). A typical reason forAskTimeoutExceptionis that the recipient actor didn't send a reply.Warning: When using future callbacks, inside actors you need to carefully avoid closing over the containing actor’s object, i.e. do not call methods or access mutable state on the enclosing actor from within the callback. This would break the actor encapsulation and may introduce synchronization bugs and race conditions because the callback will be scheduled concurrently to the enclosing actor. Unfortunately there is not yet a way to detect these illegal accesses at compile time.
Recommended usage:
final Future<Object> f = Patterns.ask(worker, request, timeout); f.onSuccess(new Procedure<Object>() { public void apply(Object o) { nextActor.tell(new EnrichedResult(request, o)); } }); 
- 
askWithReplyTo
public scala.concurrent.Future<java.lang.Object> askWithReplyTo(ActorRef actor, Function<ActorRef,java.lang.Object> messageFactory, long timeoutMillis)
A variation of ask which allows to implement "replyTo" pattern by including sender reference in message.final Future<Object> f = Patterns.askWithReplyTo( worker, replyTo -> new Request(replyTo), timeout); 
- 
ask
public scala.concurrent.Future<java.lang.Object> ask(ActorSelection selection, java.lang.Object message, Timeout timeout)
Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aFutureholding the eventual reply message; this means that the targetpekko.actor.ActorSelectionneeds to send the result to thesenderreference provided.The Future will be completed with an
pekko.pattern.AskTimeoutExceptionafter the given timeout has expired; this is independent from any timeout applied while awaiting a result for this future (i.e. inAwait.result(..., timeout)). A typical reason forAskTimeoutExceptionis that the recipient actor didn't send a reply.Warning: When using future callbacks, inside actors you need to carefully avoid closing over the containing actor’s object, i.e. do not call methods or access mutable state on the enclosing actor from within the callback. This would break the actor encapsulation and may introduce synchronization bugs and race conditions because the callback will be scheduled concurrently to the enclosing actor. Unfortunately there is not yet a way to detect these illegal accesses at compile time.
Recommended usage:
final Future<Object> f = Patterns.ask(selection, request, timeout); f.onSuccess(new Procedure<Object>() { public void apply(Object o) { nextActor.tell(new EnrichedResult(request, o)); } }); 
- 
ask
public java.util.concurrent.CompletionStage<java.lang.Object> ask(ActorSelection selection, java.lang.Object message, java.time.Duration timeout)
Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aCompletionStageholding the eventual reply message; this means that the targetpekko.actor.ActorSelectionneeds to send the result to thesenderreference provided.The CompletionStage will be completed with an
pekko.pattern.AskTimeoutExceptionafter the given timeout has expired; this is independent from any timeout applied while awaiting a result for this future (i.e. inAwait.result(..., timeout)). A typical reason forAskTimeoutExceptionis that the recipient actor didn't send a reply.Warning: When using future callbacks, inside actors you need to carefully avoid closing over the containing actor’s object, i.e. do not call methods or access mutable state on the enclosing actor from within the callback. This would break the actor encapsulation and may introduce synchronization bugs and race conditions because the callback will be scheduled concurrently to the enclosing actor. Unfortunately there is not yet a way to detect these illegal accesses at compile time.
Recommended usage:
final CompletionStage<Object> f = Patterns.ask(selection, request, duration); f.thenRun(result -> nextActor.tell(new EnrichedResult(request, result))); 
- 
ask
public scala.concurrent.Future<java.lang.Object> ask(ActorSelection selection, java.lang.Object message, long timeoutMillis)
Java API fororg.apache.pekko.pattern.ask: Sends a message asynchronously and returns aFutureholding the eventual reply message; this means that the targetpekko.actor.ActorSelectionneeds to send the result to thesenderreference provided.The Future will be completed with an
pekko.pattern.AskTimeoutExceptionafter the given timeout has expired; this is independent from any timeout applied while awaiting a result for this future (i.e. inAwait.result(..., timeout)). A typical reason forAskTimeoutExceptionis that the recipient actor didn't send a reply.Warning: When using future callbacks, inside actors you need to carefully avoid closing over the containing actor’s object, i.e. do not call methods or access mutable state on the enclosing actor from within the callback. This would break the actor encapsulation and may introduce synchronization bugs and race conditions because the callback will be scheduled concurrently to the enclosing actor. Unfortunately there is not yet a way to detect these illegal accesses at compile time.
Recommended usage:
final Future<Object> f = Patterns.ask(selection, request, timeout); f.onSuccess(new Procedure<Object>() { public void apply(Object o) { nextActor.tell(new EnrichedResult(request, o)); } }); 
- 
askWithReplyTo
public scala.concurrent.Future<java.lang.Object> askWithReplyTo(ActorSelection selection, Function<ActorRef,java.lang.Object> messageFactory, long timeoutMillis)
A variation of ask which allows to implement "replyTo" pattern by including sender reference in message.final Future<Object> f = Patterns.askWithReplyTo( selection, replyTo -> new Request(replyTo), timeout); 
- 
askWithReplyTo
public java.util.concurrent.CompletionStage<java.lang.Object> askWithReplyTo(ActorSelection selection, Function<ActorRef,java.lang.Object> messageFactory, java.time.Duration timeout)
A variation of ask which allows to implement "replyTo" pattern by including sender reference in message.final CompletionStage<Object> f = Patterns.askWithReplyTo( selection, replyTo -> new Request(replyTo), timeout); 
- 
pipe
public <T> PipeToSupport.PipeableFuture<T> pipe(scala.concurrent.Future<T> future, scala.concurrent.ExecutionContext context)
Register an onComplete callback on thisFutureto send the result to the givenpekko.actor.ActorReforpekko.actor.ActorSelection. Returns the original Future to allow method chaining. If the future was completed with failure it is sent as apekko.actor.Status.Failureto the recipient.Recommended usage example:
final Future<Object> f = Patterns.ask(worker, request, timeout); // apply some transformation (i.e. enrich with request info) final Future<Object> transformed = f.map(new org.apache.pekko.japi.Function<Object, Object>() { ... }); // send it on to the next operator Patterns.pipe(transformed, context).to(nextActor); 
- 
pipe
public <T> PipeToSupport.PipeableCompletionStage<T> pipe(java.util.concurrent.CompletionStage<T> future, scala.concurrent.ExecutionContext context)
When thisCompletionStagefinishes, send its result to the givenpekko.actor.ActorReforpekko.actor.ActorSelection. Returns the original CompletionStage to allow method chaining. If the future was completed with failure it is sent as apekko.actor.Status.Failureto the recipient.Recommended usage example:
final CompletionStage<Object> f = Patterns.ask(worker, request, timeout); // apply some transformation (i.e. enrich with request info) final CompletionStage<Object> transformed = f.thenApply(result -> { ... }); // send it on to the next operator Patterns.pipe(transformed, context).to(nextActor); 
- 
gracefulStop
public scala.concurrent.Future<java.lang.Boolean> gracefulStop(ActorRef target, scala.concurrent.duration.FiniteDuration timeout)
Returns aFuturethat will be completed with success (valuetrue) when existing messages of the target actor has been processed and the actor has been terminated.Useful when you need to wait for termination or compose ordered termination of several actors.
If the target actor isn't terminated within the timeout the
Futureis completed with failurepekko.pattern.AskTimeoutException. 
- 
gracefulStop
public java.util.concurrent.CompletionStage<java.lang.Boolean> gracefulStop(ActorRef target, java.time.Duration timeout)
Returns aCompletionStagethat will be completed with success (valuetrue) when existing messages of the target actor has been processed and the actor has been terminated.Useful when you need to wait for termination or compose ordered termination of several actors.
If the target actor isn't terminated within the timeout the
CompletionStageis completed with failurepekko.pattern.AskTimeoutException. 
- 
gracefulStop
public scala.concurrent.Future<java.lang.Boolean> gracefulStop(ActorRef target, scala.concurrent.duration.FiniteDuration timeout, java.lang.Object stopMessage)
Returns aFuturethat will be completed with success (valuetrue) when existing messages of the target actor has been processed and the actor has been terminated.Useful when you need to wait for termination or compose ordered termination of several actors.
If you want to invoke specialized stopping logic on your target actor instead of PoisonPill, you can pass your stop command as
stopMessageparameterIf the target actor isn't terminated within the timeout the
Futureis completed with failurepekko.pattern.AskTimeoutException. 
- 
gracefulStop
public java.util.concurrent.CompletionStage<java.lang.Boolean> gracefulStop(ActorRef target, java.time.Duration timeout, java.lang.Object stopMessage)
Returns aCompletionStagethat will be completed with success (valuetrue) when existing messages of the target actor has been processed and the actor has been terminated.Useful when you need to wait for termination or compose ordered termination of several actors.
If you want to invoke specialized stopping logic on your target actor instead of PoisonPill, you can pass your stop command as
stopMessageparameterIf the target actor isn't terminated within the timeout the
CompletionStageis completed with failurepekko.pattern.AskTimeoutException. 
- 
after
public <T> scala.concurrent.Future<T> after(scala.concurrent.duration.FiniteDuration duration, Scheduler scheduler, scala.concurrent.ExecutionContext context, java.util.concurrent.Callable<scala.concurrent.Future<T>> value)Returns aFuturethat will be completed with the success or failure of the provided Callable after the specified duration. 
- 
after
public <T> java.util.concurrent.CompletionStage<T> after(java.time.Duration duration, ClassicActorSystemProvider system, java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> value)Returns aCompletionStagethat will be completed with the success or failure of the provided Callable after the specified duration. 
- 
after
public <T> java.util.concurrent.CompletionStage<T> after(java.time.Duration duration, Scheduler scheduler, scala.concurrent.ExecutionContext context, java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> value)Returns aCompletionStagethat will be completed with the success or failure of the provided Callable after the specified duration. 
- 
after
public <T> scala.concurrent.Future<T> after(scala.concurrent.duration.FiniteDuration duration, Scheduler scheduler, scala.concurrent.ExecutionContext context, scala.concurrent.Future<T> value)Deprecated.Use the overload one which accepts a Callable of Future instead. Since Akka 2.5.22.Returns aFuturethat will be completed with the success or failure of the provided Callable after the specified duration. 
- 
after
public <T> java.util.concurrent.CompletionStage<T> after(java.time.Duration duration, Scheduler scheduler, scala.concurrent.ExecutionContext context, java.util.concurrent.CompletionStage<T> value)Deprecated.Use the overloaded one which accepts a Callable of CompletionStage instead. Since Akka 2.5.22.Returns aCompletionStagethat will be completed with the success or failure of the provided value after the specified duration. 
- 
retry
public <T> java.util.concurrent.CompletionStage<T> retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, scala.concurrent.ExecutionContext ec)Returns an internally retryingCompletionStageThe first attempt will be made immediately, each subsequent attempt will be made immediately if the previous attempt failed.If attempts are exhausted the returned completion operator is simply the result of invoking attempt. Note that the attempt function will be invoked on the given execution context for subsequent tries and therefore must be thread safe (not touch unsafe mutable state).
 
- 
retry
public <T> java.util.concurrent.CompletionStage<T> retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor, ClassicActorSystemProvider system)Returns an internally retryingCompletionStageThe first attempt will be made immediately, each subsequent attempt will be made with a backoff time, if the previous attempt failed.If attempts are exhausted the returned future is simply the result of invoking attempt. Note that the attempt function will be invoked on the given execution context for subsequent tries and therefore must be thread safe (not touch unsafe mutable state).
- Parameters:
 minBackoff- minimum (initial) duration until the child actor will started again, if it is terminatedmaxBackoff- the exponential back-off is capped to this durationrandomFactor- after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.0.2adds up to20%delay. In order to skip this additional delay pass in0.
 
- 
retry
public <T> java.util.concurrent.CompletionStage<T> retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor, Scheduler scheduler, scala.concurrent.ExecutionContext ec)Returns an internally retryingCompletionStageThe first attempt will be made immediately, each subsequent attempt will be made with a backoff time, if the previous attempt failed.If attempts are exhausted the returned future is simply the result of invoking attempt. Note that the attempt function will be invoked on the given execution context for subsequent tries and therefore must be thread safe (not touch unsafe mutable state).
- Parameters:
 minBackoff- minimum (initial) duration until the child actor will started again, if it is terminatedmaxBackoff- the exponential back-off is capped to this durationrandomFactor- after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.0.2adds up to20%delay. In order to skip this additional delay pass in0.
 
- 
retry
public <T> scala.concurrent.Future<T> retry(java.util.concurrent.Callable<scala.concurrent.Future<T>> attempt, int attempts, scala.concurrent.duration.FiniteDuration delay, Scheduler scheduler, scala.concurrent.ExecutionContext context)Returns an internally retryingFutureThe first attempt will be made immediately, and each subsequent attempt will be made after 'delay'. A scheduler (eg context.system.scheduler) must be provided to delay each retryIf attempts are exhausted the returned future is simply the result of invoking attempt. Note that the attempt function will be invoked on the given execution context for subsequent tries and therefore must be thread safe (not touch unsafe mutable state).
 
- 
retry
public <T> java.util.concurrent.CompletionStage<T> retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, java.time.Duration delay, ClassicActorSystemProvider system)Returns an internally retryingCompletionStageThe first attempt will be made immediately, and each subsequent attempt will be made after 'delay'. A scheduler (eg context.system.scheduler) must be provided to delay each retryIf attempts are exhausted the returned completion operator is simply the result of invoking attempt. Note that the attempt function will be invoked on the given execution context for subsequent tries and therefore must be thread safe (not touch unsafe mutable state).
 
- 
retry
public <T> java.util.concurrent.CompletionStage<T> retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, java.time.Duration delay, Scheduler scheduler, scala.concurrent.ExecutionContext ec)Returns an internally retryingCompletionStageThe first attempt will be made immediately, and each subsequent attempt will be made after 'delay'. A scheduler (eg context.system.scheduler) must be provided to delay each retryIf attempts are exhausted the returned completion operator is simply the result of invoking attempt. Note that the attempt function will be invoked on the given execution context for subsequent tries and therefore must be thread safe (not touch unsafe mutable state).
 
- 
retry
public <T> java.util.concurrent.CompletionStage<T> retry(java.util.concurrent.Callable<java.util.concurrent.CompletionStage<T>> attempt, int attempts, java.util.function.IntFunction<java.util.Optional<java.time.Duration>> delayFunction, Scheduler scheduler, scala.concurrent.ExecutionContext context)Returns an internally retryingCompletionStage. The first attempt will be made immediately, each subsequent attempt will be made after the 'delay' return bydelayFunction(the input next attempt count start from 1). Return an emptyOptionalinstance for no delay. A scheduler (eg context.system.scheduler) must be provided to delay each retry. You could provide a function to generate the next delay duration after first attempt, this function should never returnnull, otherwise anIllegalArgumentExceptionwill be through.If attempts are exhausted the returned future is simply the result of invoking attempt. Note that the attempt function will be invoked on the given execution context for subsequent tries and therefore must be thread safe (not touch unsafe mutable state).
 
 - 
 
 -