[][src]Struct erdos::dataflow::callback_builder::ThreeReadFiveWrite

pub struct ThreeReadFiveWrite<S0: State, S1: State, S2: State, W0: Data, W1: Data, W2: Data, W3: Data, W4: Data> { /* fields omitted */ }

Methods

impl<S0: State, S1: State, S2: State, W0: Data, W1: Data, W2: Data, W3: Data, W4: Data> ThreeReadFiveWrite<S0, S1, S2, W0, W1, W2, W3, W4>[src]

pub fn new<R0: Data, R1: Data, R2: Data>(
    rs0: &StatefulReadStream<R0, S0>,
    rs1: &StatefulReadStream<R1, S1>,
    rs2: &StatefulReadStream<R2, S2>,
    ws0: WriteStream<W0>,
    ws1: WriteStream<W1>,
    ws2: WriteStream<W2>,
    ws3: WriteStream<W3>,
    ws4: WriteStream<W4>
) -> Self
[src]

pub fn add_watermark_callback<F: 'static + Fn(&Timestamp, &S0, &S1, &S2, &mut WriteStream<W0>, &mut WriteStream<W1>, &mut WriteStream<W2>, &mut WriteStream<W3>, &mut WriteStream<W4>)>(
    &mut self,
    callback: F
)
[src]

pub fn add_state<S: State>(
    &mut self,
    state: S
) -> Rc<RefCell<ThreeReadFiveWriteStateful<S0, S1, S2, W0, W1, W2, W3, W4, S>>>
[src]

pub fn add_read_stream<R3: Data, S3: 'static + State>(
    &mut self,
    read_stream: &StatefulReadStream<R3, S3>
) -> Rc<RefCell<FourReadFiveWrite<S0, S1, S2, S3, W0, W1, W2, W3, W4>>>
[src]

pub fn add_write_stream<W5: Data>(
    &mut self,
    write_stream: &WriteStream<W5>
) -> Rc<RefCell<ThreeReadSixWrite<S0, S1, S2, W0, W1, W2, W3, W4, W5>>>
[src]

Trait Implementations

impl<S0: State, S1: State, S2: State, W0: Data, W1: Data, W2: Data, W3: Data, W4: Data> MultiStreamEventMaker for ThreeReadFiveWrite<S0, S1, S2, W0, W1, W2, W3, W4>[src]

Auto Trait Implementations

impl<S0, S1, S2, W0, W1, W2, W3, W4> !RefUnwindSafe for ThreeReadFiveWrite<S0, S1, S2, W0, W1, W2, W3, W4>

impl<S0, S1, S2, W0, W1, W2, W3, W4> !Send for ThreeReadFiveWrite<S0, S1, S2, W0, W1, W2, W3, W4>

impl<S0, S1, S2, W0, W1, W2, W3, W4> !Sync for ThreeReadFiveWrite<S0, S1, S2, W0, W1, W2, W3, W4>

impl<S0, S1, S2, W0, W1, W2, W3, W4> Unpin for ThreeReadFiveWrite<S0, S1, S2, W0, W1, W2, W3, W4>

impl<S0, S1, S2, W0, W1, W2, W3, W4> !UnwindSafe for ThreeReadFiveWrite<S0, S1, S2, W0, W1, W2, W3, W4>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[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> FromPy<T> for T[src]

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

impl<T, U> IntoPy<U> for T where
    U: FromPy<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.