Hi,
In classic, you could have actor A
ask actor B
, B
could forward that request to C
, and C
would respond to A
(on B
's behalf).
“A
” would ask
with a timeout, and handle the same, but B
would simply forward the request without any timeout management.
In typed, I understand that there would need to be an additional step of translating C's
protocol to B's
before replying to A
.
How can I “forward” a request to another actor in Akka Typed without having a redundant ask/timeout in the communication between B
and C
in this example? Is this possible?
3 posts - 2 participants