pub struct CompiledSpatialGraph<T> { /* private fields */ }Expand description
Validated graph with a bounded input queue.
Implementations§
Source§impl<T: Clone> CompiledSpatialGraph<T>
impl<T: Clone> CompiledSpatialGraph<T>
Sourcepub fn try_submit(&mut self, value: T) -> RuntimeResult<BackpressureSignal>
pub fn try_submit(&mut self, value: T) -> RuntimeResult<BackpressureSignal>
Admits one source value or rejects at the hard watermark.
Sourcepub fn run_next(&mut self) -> RuntimeResult<Option<(Vec<T>, ExecutionReceipt)>>
pub fn run_next(&mut self) -> RuntimeResult<Option<(Vec<T>, ExecutionReceipt)>>
Executes the oldest input and returns one value per sink plus a receipt.
Sourcepub fn fusion_groups(&self) -> &[Vec<String>]
pub fn fusion_groups(&self) -> &[Vec<String>]
Returns the compiled queue-elision schedule.
Auto Trait Implementations§
impl<T> Freeze for CompiledSpatialGraph<T>
impl<T> !RefUnwindSafe for CompiledSpatialGraph<T>
impl<T> Send for CompiledSpatialGraph<T>where
T: Send,
impl<T> !Sync for CompiledSpatialGraph<T>
impl<T> Unpin for CompiledSpatialGraph<T>where
T: Unpin,
impl<T> UnsafeUnpin for CompiledSpatialGraph<T>
impl<T> !UnwindSafe for CompiledSpatialGraph<T>
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