Struct actix::Arbiter [] [src]

pub struct Arbiter { /* fields omitted */ }

Methods

impl Arbiter
[src]

[src]

[src]

Return current arbiter address

[src]

[src]

Trait Implementations

impl Actor for Arbiter
[src]

[src]

Method is called when actor get polled first time.

[src]

Method is called when context's stream finishes. By default returns ActorStatus::Done. Read more

impl Clone for Arbiter
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl MessageHandler<StopArbiter> for Arbiter
[src]

The type of value that this message will resolved with if it is successful.

The type of error that this message will resolve with if it fails in a normal fashion.

If message handler is used for handling messages from Future or Stream, then InputError type has to be set to correspondent Error Read more

[src]

Method is called for every message received by this Actor

[src]

Method is called on error.

impl MessageHandler<ArbiterAddress> for Arbiter
[src]

The type of value that this message will resolved with if it is successful.

The type of error that this message will resolve with if it fails in a normal fashion.

If message handler is used for handling messages from Future or Stream, then InputError type has to be set to correspondent Error Read more

[src]

Method is called for every message received by this Actor

[src]

Method is called on error.