Package akka.actor.typed
Interface RecipientRef<T>
-
- All Known Subinterfaces:
ActorRef<T>
,ActorRefImpl<T>
,EntityRef<M>
,InternalRecipientRef<T>
- All Known Implementing Classes:
ActorRefAdapter
,ActorSystem
,ActorSystemAdapter
,ActorSystemStub
,DebugRef
,EntityRef
,EntityRefImpl
,FunctionRef
public interface RecipientRef<T>
Send a message to the destination referenced by thisRecipientRef
using *at-most-once* messaging semantics.
-
-
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.- Parameters:
msg
- (undocumented)
-
-