Struct OutputHandle

Source
pub struct OutputHandle<T>(/* private fields */);
Expand description

A handle used to read data from a stream from outside the circuit.

Internally, the handle manages an array of mailboxes, one for each worker thread. At the end of each clock cycle, the worker writes the current contents of the stream to the mailbox.

Once the clock cycle ends (i.e., the DBSPHandle::step method returns), each mailbox contains a single value – a copy of stream contents at the current clock cycle.

The client retrieves values produced by individual workers using the take_from_worker method. Alternatively they can retrieve values from all mailboxes at once using take_from_all. If the stream carries relational data, the consolidate method can be used to combine output batches produced by all workes into a single batch.

Reading from a mailbox using any of these methods removes the value leaving the mailbox empty. If the value is not read, it gets overwritten at the next clock cycle (i.e., during the next call to step).

Implementations§

Source§

impl<T> OutputHandle<T>
where T: Send + Clone + 'static,

Source

pub fn num_nonempty_mailboxes(&self) -> usize

The number of mailboxes that contain values that haven’t been retrieved yet.

Source

pub fn peek_from_worker<F, O: 'static>(&self, worker: usize, func: F) -> O
where F: Fn(&Option<T>) -> O,

Source

pub fn take_from_worker(&self, worker: usize) -> Option<T>

Read the value produced by worker worker thread during the last clock cycle.

This method is invoked between two consecutive DBSPHandle::step calls to retrieve the value written to the stream during the last clock cycle, if any. It removes the value from the mailbox, so subsequent calls will return None.

Invoking this method in the middle of a clock cycle, i.e., during the execution of DBSPHandle::step, may return either None or Some, depending of whether a value has already been pushed to the stream.

Source

pub fn take_from_all(&self) -> Vec<T>

Read values produced by all worker threads during the last clock cycle.

This is equivalent to calling take_from_worker for each worker thread in order and storing all none-None results in a vector.

Source§

impl<T> OutputHandle<T>
where T: Batch<Time = ()>, T::InnerBatch: Send,

Source

pub fn consolidate(&self) -> T

Read batches produced by all worker threads during the last clock cycle and consolidate them into a single batch.

This method is used in the common case when the OutputHandle is attached to a stream that carries Batches of updates to relational data. Semantically, each Batch consists of (key, value, weight) tuples. Depending on the structure of the circuit, the same key or (key, value) pair can occur in batches produced by multiple workers. This method retrieves batches produced by all workers and consolidates them into a single batch where each (key, value) pair occurs exactly once.

Internally, consolidate calls take_from_worker to retrieve batches from individual worker threads. See take_from_worker documentation for the exact semantics of this method. In particular, note that repeated calls to take_from_worker return None. consolidate skips None results when computing the consolidated batch.

Source§

impl<T> OutputHandle<T>
where T: Batch<Time = ()> + Send,

Source

pub fn dyn_consolidate(&self, factories: &T::Factories) -> T

Trait Implementations§

Source§

impl<T: Clone> Clone for OutputHandle<T>

Source§

fn clone(&self) -> OutputHandle<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<T> Freeze for OutputHandle<T>

§

impl<T> !RefUnwindSafe for OutputHandle<T>

§

impl<T> Send for OutputHandle<T>
where T: Send,

§

impl<T> Sync for OutputHandle<T>
where T: Send,

§

impl<T> Unpin for OutputHandle<T>

§

impl<T> !UnwindSafe for OutputHandle<T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> ArchivePointee for T

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
Source§

impl<T> AsAny for T
where T: 'static,

Source§

fn as_any(&self) -> &(dyn Any + 'static)

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

Source§

fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FutureExt for T

Source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> LayoutRaw for T

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The type for metadata in pointers and references to Self.
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The type for metadata in pointers and references to Self.
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> Data for T
where T: Clone + 'static,

Source§

impl<T> ErasedDestructor for T
where T: 'static,