pub struct UnorderedHandle<T: Timestamp, CB: ContainerBuilder> { /* private fields */ }
Expand description
A handle to an input StreamCore, used to introduce data to a timely dataflow computation.
Implementations§
Source§impl<T: Timestamp, CB: ContainerBuilder> UnorderedHandle<T, CB>
impl<T: Timestamp, CB: ContainerBuilder> UnorderedHandle<T, CB>
Sourcepub fn session_with_builder(
&mut self,
cap: ActivateCapability<T>,
) -> ActivateOnDrop<AutoflushSession<'_, T, CB, Counter<T, CB::Container, Tee<T, CB::Container>>>>
pub fn session_with_builder( &mut self, cap: ActivateCapability<T>, ) -> ActivateOnDrop<AutoflushSession<'_, T, CB, Counter<T, CB::Container, Tee<T, CB::Container>>>>
Allocates a new automatically flushing session based on the supplied capability.
Source§impl<T: Timestamp, C: Container + Data> UnorderedHandle<T, CapacityContainerBuilder<C>>
impl<T: Timestamp, C: Container + Data> UnorderedHandle<T, CapacityContainerBuilder<C>>
Sourcepub fn session(
&mut self,
cap: ActivateCapability<T>,
) -> ActivateOnDrop<AutoflushSession<'_, T, CapacityContainerBuilder<C>, Counter<T, C, Tee<T, C>>>>
pub fn session( &mut self, cap: ActivateCapability<T>, ) -> ActivateOnDrop<AutoflushSession<'_, T, CapacityContainerBuilder<C>, Counter<T, C, Tee<T, C>>>>
Allocates a new automatically flushing session based on the supplied capability.
Trait Implementations§
Auto Trait Implementations§
impl<T, CB> Freeze for UnorderedHandle<T, CB>
impl<T, CB> !RefUnwindSafe for UnorderedHandle<T, CB>
impl<T, CB> !Send for UnorderedHandle<T, CB>
impl<T, CB> !Sync for UnorderedHandle<T, CB>
impl<T, CB> Unpin for UnorderedHandle<T, CB>
impl<T, CB> !UnwindSafe for UnorderedHandle<T, CB>
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