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 classRecipientRef.RecipientRefOps<T>static classRecipientRef.RecipientRefOps$
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtell(T msg)Send a message to the destination referenced by thisRecipientRefusing *at-most-once* messaging semantics.
-
-
-
Method Detail
-
tell
void tell(T msg)
Send a message to the destination referenced by thisRecipientRefusing *at-most-once* messaging semantics.
-
-