[][src]Struct tempest::topology::SourceActor

pub struct SourceActor { /* fields omitted */ }

Main actor for interacting with Source instances.

Trait Implementations

impl Default for SourceActor[src]

impl Actor for SourceActor[src]

type Context = Context<Self>

Actor execution context type

fn started(&mut self, ctx: &mut Context<Self>)[src]

The SourceActor was started, run initialization hooks

fn stopped(&mut self, _ctx: &mut Context<Self>)[src]

The SourceActor was stopped, run shutdown hooks.

impl Supervised for SourceActor[src]

impl Handler<SourceAckMsg> for SourceActor[src]

type Result = ()

The type of value that this handler will return.

fn handle(&mut self, msg: SourceAckMsg, _ctx: &mut Context<Self>)[src]

Handle SourceAckMsg messages and send the MsgId to the ack_queue

impl Handler<Flush> for SourceActor[src]

type Result = ()

The type of value that this handler will return.

fn handle(&mut self, _msg: Flush, _ctx: &mut Context<Self>)[src]

Handle metric::backend::Flush messages. Flushes SourceActor and Source (if configured) metrics

impl SystemService for SourceActor[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

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