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

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

Methods

impl<S0: State, S1: State, S2: State, S3: State, W0: Data, W1: Data, W2: Data, W3: Data, W4: Data, S: State> FourReadFiveWriteStateful<S0, S1, S2, S3, W0, W1, W2, W3, W4, S>[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>,
    ws0: WriteStream<W0>,
    ws1: WriteStream<W1>,
    ws2: WriteStream<W2>,
    ws3: WriteStream<W3>,
    ws4: WriteStream<W4>,
    state: S
) -> Self
[src]

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

Trait Implementations

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

Auto Trait Implementations

impl<S0, S1, S2, S3, W0, W1, W2, W3, W4, S> !RefUnwindSafe for FourReadFiveWriteStateful<S0, S1, S2, S3, W0, W1, W2, W3, W4, S>

impl<S0, S1, S2, S3, W0, W1, W2, W3, W4, S> !Send for FourReadFiveWriteStateful<S0, S1, S2, S3, W0, W1, W2, W3, W4, S>

impl<S0, S1, S2, S3, W0, W1, W2, W3, W4, S> !Sync for FourReadFiveWriteStateful<S0, S1, S2, S3, W0, W1, W2, W3, W4, S>

impl<S0, S1, S2, S3, W0, W1, W2, W3, W4, S> Unpin for FourReadFiveWriteStateful<S0, S1, S2, S3, W0, W1, W2, W3, W4, S>

impl<S0, S1, S2, S3, W0, W1, W2, W3, W4, S> !UnwindSafe for FourReadFiveWriteStateful<S0, S1, S2, S3, W0, W1, W2, W3, W4, S>

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.