Struct mz_timely_util::builder_async::InputHandleQueue
source · struct InputHandleQueue<T: Timestamp, D: Container, C: InputConnection<T>, P: Pull<Bundle<T, D>> + 'static> {
queue: Rc<RefCell<VecDeque<Event<T, C::Capability, D>>>>,
waker: Rc<Cell<Option<Waker>>>,
connection: C,
handle: InputHandleCore<T, D, P>,
}
Fields§
§queue: Rc<RefCell<VecDeque<Event<T, C::Capability, D>>>>
§waker: Rc<Cell<Option<Waker>>>
§connection: C
§handle: InputHandleCore<T, D, P>
Trait Implementations§
source§impl<T, D, C, P> InputQueue<T> for InputHandleQueue<T, D, C, P>
impl<T, D, C, P> InputQueue<T> for InputHandleQueue<T, D, C, P>
source§fn accept_input(&mut self)
fn accept_input(&mut self)
Accepts all available input into local queues.
source§fn drain_input(&mut self)
fn drain_input(&mut self)
Drains all available input and empties the local queue.
source§fn notify_progress(&mut self, upper: Antichain<T>)
fn notify_progress(&mut self, upper: Antichain<T>)
Registers a frontier notification to be delivered.
Auto Trait Implementations§
impl<T, D, C, P> Freeze for InputHandleQueue<T, D, C, P>
impl<T, D, C, P> !RefUnwindSafe for InputHandleQueue<T, D, C, P>
impl<T, D, C, P> !Send for InputHandleQueue<T, D, C, P>
impl<T, D, C, P> !Sync for InputHandleQueue<T, D, C, P>
impl<T, D, C, P> Unpin for InputHandleQueue<T, D, C, P>
impl<T, D, C, P> !UnwindSafe for InputHandleQueue<T, D, C, P>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.