[][src]Struct bastion::distributed::DistributedContext

pub struct DistributedContext { /* fields omitted */ }
This is supported on distributed only.

Distributed context that holds currently formed/forming cluster's context.

Implementations

impl DistributedContext[src]

pub fn local_ctx(&self) -> &BastionContext[src]

This is supported on distributed only.

Exposes local bastion context to distributed actor

pub fn current(&self) -> Uuid[src]

This is supported on distributed only.

Gets the current member's node id in the cluster

This shouldn't be confused with content addressing of actors in the application.

pub fn members(&self) -> Vec<ArtilleryMember>[src]

This is supported on distributed only.

Get current members of the cluster.

This list is continuously updates with cluster state. If a node is down it won't appear in this list. If a node is suspected, it will still be in here. When suspected message delivery isn't guaranteed.

pub fn tell<M>(&self, to: &Uuid, msg: M) -> Result<(), M> where
    M: Message + AsRef<str>, 
[src]

This is supported on distributed only.

Send a fire and forget style message to a destined cluster member. Message needs to be stringified or apply the rules of bastion's Message trait.

pub async fn recv<'_>(&'_ self) -> Result<ClusterMessage, ()>[src]

This is supported on distributed only.

Channel that aggregates incoming cluster events to this node.

Trait Implementations

impl Debug for DistributedContext[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsAny for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Message for T where
    T: Any + Send + Sync + Debug
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> State for T where
    T: Send + Sync + 'static, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,