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

pub struct FourReadZeroWrite<S0: State, S1: State, S2: State, S3: State> { /* fields omitted */ }

Methods

impl<S0: State, S1: State, S2: State, S3: State> FourReadZeroWrite<S0, S1, S2, S3>[src]

pub fn new<R0: Data, R1: Data, R2: Data, R3: Data>(
    rs0: &StatefulReadStream<R0, S0>,
    rs1: &StatefulReadStream<R1, S1>,
    rs2: &StatefulReadStream<R2, S2>,
    rs3: &StatefulReadStream<R3, S3>
) -> Self
[src]

pub fn add_watermark_callback<F: 'static + Fn(&Timestamp, &S0, &S1, &S2, &S3)>(
    &mut self,
    callback: F
)
[src]

pub fn add_state<S: State>(
    &mut self,
    state: S
) -> Rc<RefCell<FourReadZeroWriteStateful<S0, S1, S2, S3, S>>>
[src]

pub fn add_read_stream<R4: Data, S4: 'static + State>(
    &mut self,
    read_stream: &StatefulReadStream<R4, S4>
) -> Rc<RefCell<FiveReadZeroWrite<S0, S1, S2, S3, S4>>>
[src]

pub fn add_write_stream<W0: Data>(
    &mut self,
    write_stream: &WriteStream<W0>
) -> Rc<RefCell<FourReadOneWrite<S0, S1, S2, S3, W0>>>
[src]

Trait Implementations

impl<S0: State, S1: State, S2: State, S3: State> MultiStreamEventMaker for FourReadZeroWrite<S0, S1, S2, S3>[src]

Auto Trait Implementations

impl<S0, S1, S2, S3> !RefUnwindSafe for FourReadZeroWrite<S0, S1, S2, S3>

impl<S0, S1, S2, S3> !Send for FourReadZeroWrite<S0, S1, S2, S3>

impl<S0, S1, S2, S3> !Sync for FourReadZeroWrite<S0, S1, S2, S3>

impl<S0, S1, S2, S3> Unpin for FourReadZeroWrite<S0, S1, S2, S3>

impl<S0, S1, S2, S3> !UnwindSafe for FourReadZeroWrite<S0, S1, S2, S3>

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.