Package akka.actor.typed
Interface RecipientRef<T>
-
- All Known Subinterfaces:
ActorRef<T>
,ActorRefImpl<T>
,EntityRef<M>
,InternalRecipientRef<T>
,TestProbe<M>
- All Known Implementing Classes:
ActorSystem
,EntityRef
,TestProbe
public interface RecipientRef<T>
FIXME doc - not serializable - not watchable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
RecipientRef.RecipientRefOps<T>
static class
RecipientRef.RecipientRefOps$
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
tell(T msg)
Send a message to the destination referenced by thisRecipientRef
using *at-most-once* messaging semantics.
-
-
-
Method Detail
-
tell
void tell(T msg)
Send a message to the destination referenced by thisRecipientRef
using *at-most-once* messaging semantics.
-
-