Trait meio::handlers::StreamAcceptor[][src]

pub trait StreamAcceptor<T>: Actor {
    fn stream_group(&self) -> Self::GroupBy;
}
Expand description

Controls where stream can be accepted to an Actor using Address.

Required methods

fn stream_group(&self) -> Self::GroupBy[src]

The termination group used by Address::attach method.

Implementors