Class ActorFlow$
- java.lang.Object
-
- akka.stream.typed.javadsl.ActorFlow$
-
public class ActorFlow$ extends java.lang.Object
Collection of Flows aimed at integrating with typed Actors.
-
-
Field Summary
Fields Modifier and Type Field Description static ActorFlow$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description ActorFlow$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <I,Q,A>
Flow<I,A,NotUsed>ask(int parallelism, ActorRef<Q> ref, java.time.Duration timeout, scala.Function2<I,ActorRef<A>,Q> makeMessage)
Use theask
pattern to send a request-reply message to the targetref
actor.<I,Q,A>
Flow<I,A,NotUsed>ask(ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<A>,Q> makeMessage)
Use theask
pattern to send a request-reply message to the targetref
actor.<I,Q,A,Ctx>
Flow<Pair<I,Ctx>,Pair<A,Ctx>,NotUsed>askWithContext(int parallelism, ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<A>,Q> makeMessage)
Use theask
pattern to send a request-reply message to the targetref
actor without including the context.<I,Q,A,Ctx>
Flow<Pair<I,Ctx>,Pair<A,Ctx>,NotUsed>askWithContext(ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<A>,Q> makeMessage)
Use theask
pattern to send a request-reply message to the targetref
actor without including the context.<I,Q,A>
Flow<I,A,NotUsed>askWithStatus(int parallelism, ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<StatusReply<A>>,Q> makeMessage)
Use for messages whose response is known to be aStatusReply
.<I,Q,A>
Flow<I,A,NotUsed>askWithStatus(ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<StatusReply<A>>,Q> makeMessage)
Use for messages whose response is known to be aStatusReply
.<I,Q,A,Ctx>
Flow<Pair<I,Ctx>,Pair<A,Ctx>,NotUsed>askWithStatusAndContext(ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<StatusReply<A>>,Q> makeMessage)
Use for messages whose response is known to be aStatusReply
.
-
-
-
Field Detail
-
MODULE$
public static final ActorFlow$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
ask
public <I,Q,A> Flow<I,A,NotUsed> ask(ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<A>,Q> makeMessage)
Use theask
pattern to send a request-reply message to the targetref
actor. If any of the asks times out it will fail the stream with aTimeoutException
.Do not forget to include the expected response type in the method call, like so:
flow.via(ActorFlow.<String, AskMe, String>ask(ref, timeout, (msg, replyTo) -> new AskMe(msg, replyTo))) // or simply flow.via(ActorFlow.ask(ref, timeout, AskMe::new))
otherwise
Nothing
will be assumed, which is most likely not what you want.Defaults to parallelism of 2 messages in flight, since while one ask message may be being worked on, the second one still be in the mailbox, so defaulting to sending the second one a bit earlier than when first ask has replied maintains a slightly healthier throughput.
The operator fails with an
WatchedActorTerminatedException
if the target actor is terminated, or with anTimeoutException
in case the ask exceeds the timeout passed in.Adheres to the
ActorAttributes.SupervisionStrategy
attribute.'''Emits when''' the futures (in submission order) created by the ask pattern internally are completed
'''Backpressures when''' the number of futures reaches the configured parallelism and the downstream backpressures
'''Completes when''' upstream completes and all futures have been completed and all elements have been emitted
'''Fails when''' the passed in actor terminates, or a timeout is exceeded in any of the asks performed
'''Cancels when''' downstream cancels
-
askWithStatus
public <I,Q,A> Flow<I,A,NotUsed> askWithStatus(ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<StatusReply<A>>,Q> makeMessage)
Use for messages whose response is known to be aStatusReply
. When aStatusReply.success(T)
response arrives the future is completed with the wrapped value, if aStatusReply.error(java.lang.String)
arrives the future is instead failed.
-
ask
public <I,Q,A> Flow<I,A,NotUsed> ask(int parallelism, ActorRef<Q> ref, java.time.Duration timeout, scala.Function2<I,ActorRef<A>,Q> makeMessage)
Use theask
pattern to send a request-reply message to the targetref
actor. If any of the asks times out it will fail the stream with aTimeoutException
.Do not forget to include the expected response type in the method call, like so:
flow.via(ActorFlow.<String, AskMe, String>ask(ref, timeout, (msg, replyTo) -> new AskMe(msg, replyTo))) // or simply flow.via(ActorFlow.ask(ref, timeout, AskMe::new))
otherwise
Nothing
will be assumed, which is most likely not what you want.The operator fails with an
WatchedActorTerminatedException
if the target actor is terminated, or with anTimeoutException
in case the ask exceeds the timeout passed in.Adheres to the
ActorAttributes.SupervisionStrategy
attribute.'''Emits when''' the futures (in submission order) created by the ask pattern internally are completed
'''Backpressures when''' the number of futures reaches the configured parallelism and the downstream backpressures
'''Completes when''' upstream completes and all futures have been completed and all elements have been emitted
'''Fails when''' the passed in actor terminates, or a timeout is exceeded in any of the asks performed
'''Cancels when''' downstream cancels
-
askWithStatus
public <I,Q,A> Flow<I,A,NotUsed> askWithStatus(int parallelism, ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<StatusReply<A>>,Q> makeMessage)
Use for messages whose response is known to be aStatusReply
. When aStatusReply.success(T)
response arrives the future is completed with the wrapped value, if aStatusReply.error(java.lang.String)
arrives the future is instead failed.
-
askWithContext
public <I,Q,A,Ctx> Flow<Pair<I,Ctx>,Pair<A,Ctx>,NotUsed> askWithContext(ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<A>,Q> makeMessage)
Use theask
pattern to send a request-reply message to the targetref
actor without including the context.
-
askWithStatusAndContext
public <I,Q,A,Ctx> Flow<Pair<I,Ctx>,Pair<A,Ctx>,NotUsed> askWithStatusAndContext(ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<StatusReply<A>>,Q> makeMessage)
Use for messages whose response is known to be aStatusReply
. When aStatusReply.success(T)
response arrives the future is completed with the wrapped value, if aStatusReply.error(java.lang.String)
arrives the future is instead failed.
-
askWithContext
public <I,Q,A,Ctx> Flow<Pair<I,Ctx>,Pair<A,Ctx>,NotUsed> askWithContext(int parallelism, ActorRef<Q> ref, java.time.Duration timeout, java.util.function.BiFunction<I,ActorRef<A>,Q> makeMessage)
Use theask
pattern to send a request-reply message to the targetref
actor without including the context.
-
-