Interface ICanTell
A shared interface for both IActorRef and ActorSelection, both of which can be sent messages via the Tell(Object, IActorRef) command.
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public interface ICanTell
Methods
| Improve this Doc View SourceTell(Object, IActorRef)
Asynchronously delivers a message to this IActorRef or ActorSelection in a non-blocking fashion. Uses "at most once" delivery semantics.
Declaration
void Tell(object message, IActorRef sender)
Parameters
Type | Name | Description |
---|---|---|
Object | message | The message to be sent to the target. |
IActorRef | sender | The sender of this message. Defaults to NoSender if left to |