pub struct ActorSelection<Msg: Message> { /* fields omitted */ }
A selection represents part of the actor heirarchy, allowing
messages to be sent to all actors in the selection.
There are several use cases where you would interact with actors
via a selection instead of actor references:
- You know the path of an actor but you don't have its
ActorRef
- You want to broadcast a message to all actors within a path
ActorRef
is almost always the better choice for actor interaction,
since messages are directly sent to the actor's mailbox without
any preprocessing or cloning.
ActorSelection
provides flexibility for the cases where at runtime
the ActorRef
s can't be known. This comes at the cost of traversing
part of the actor heirarchy and cloning messages.
A selection is anchored to an ActorRef
and the path is relative
to that actor's path.
If a selection.tell
results in the message being sent to zero actors,
the message is sent to dead letters.
type Msg = Msg
Implement to provide message routing to actors, e.g. ActorRef
and ActorSelection
Formats the value using the given formatter. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Immutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)