Interface Sender


public interface Sender

A Sender is a delegate of a Host tasked with sending messages to other hosts. When a message must be sent from one host to another, the Sender facilitates the movement. A Sender does not operate directly between Actors but rather between Hosts on behalf of Actors. A Sender should provide a queue so that the originating Actor can get back to work without waiting for possible network delays. Because a Sender can be sending to many Hosts, the sender is likely to have a pool of threads used for each outbound message.-