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

pub struct SixReadSevenWrite<S0: State, S1: State, S2: State, S3: State, S4: State, S5: State, W0: Data, W1: Data, W2: Data, W3: Data, W4: Data, W5: Data, W6: Data> { /* fields omitted */ }

Methods

impl<S0: State, S1: State, S2: State, S3: State, S4: State, S5: State, W0: Data, W1: Data, W2: Data, W3: Data, W4: Data, W5: Data, W6: Data> SixReadSevenWrite<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6>[src]

pub fn new<R0: Data, R1: Data, R2: Data, R3: Data, R4: Data, R5: Data>(
    rs0: &StatefulReadStream<R0, S0>,
    rs1: &StatefulReadStream<R1, S1>,
    rs2: &StatefulReadStream<R2, S2>,
    rs3: &StatefulReadStream<R3, S3>,
    rs4: &StatefulReadStream<R4, S4>,
    rs5: &StatefulReadStream<R5, S5>,
    ws0: WriteStream<W0>,
    ws1: WriteStream<W1>,
    ws2: WriteStream<W2>,
    ws3: WriteStream<W3>,
    ws4: WriteStream<W4>,
    ws5: WriteStream<W5>,
    ws6: WriteStream<W6>
) -> Self
[src]

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

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

pub fn add_read_stream<R6: Data, S6: 'static + State>(
    &mut self,
    read_stream: &StatefulReadStream<R6, S6>
) -> Rc<RefCell<SevenReadSevenWrite<S0, S1, S2, S3, S4, S5, S6, W0, W1, W2, W3, W4, W5, W6>>>
[src]

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

Trait Implementations

impl<S0: State, S1: State, S2: State, S3: State, S4: State, S5: State, W0: Data, W1: Data, W2: Data, W3: Data, W4: Data, W5: Data, W6: Data> MultiStreamEventMaker for SixReadSevenWrite<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6>[src]

Auto Trait Implementations

impl<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6> !RefUnwindSafe for SixReadSevenWrite<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6>

impl<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6> !Send for SixReadSevenWrite<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6>

impl<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6> !Sync for SixReadSevenWrite<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6>

impl<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6> Unpin for SixReadSevenWrite<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6>

impl<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6> !UnwindSafe for SixReadSevenWrite<S0, S1, S2, S3, S4, S5, W0, W1, W2, W3, W4, W5, W6>

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.