Type Definition xtra::address::WeakAddress

source · []
pub type WeakAddress<A> = Address<A, Weak>;
Expand description

A WeakAddress is a reference to an actor through which Messages can be sent. It can be cloned. Unlike Address, a WeakAddress will not inhibit the dropping of an actor. It is created by the Address::downgrade method.

Trait Implementations

Upcasts this weak message channel into a boxed generic MessageChannel trait object

Upcasts this weak message channel into a reference to the generic MessageChannel trait object

Clones this channel as a boxed trait object.

Use this message channel as a futures Sink and asynchronously send messages through it. Read more