pub struct PartitionedSessionFactoryInput<A, G, W> { /* private fields */ }Expand description
Exact architecture, partition, communication manifest, and payload work received by a partition-runtime factory.
This value is assembled only after the architecture has been checked against its partition and the payload tasks have been re-derived from that same architecture/partition pair. A factory consumes all four authorities together instead of receiving independently assembled runtime inputs.
Implementations§
Source§impl<A, G, W> PartitionedSessionFactoryInput<A, G, W>
impl<A, G, W> PartitionedSessionFactoryInput<A, G, W>
Sourcepub fn materialization_tasks(&self) -> &[ReplicatedTextMaterializationTask]
pub fn materialization_tasks(&self) -> &[ReplicatedTextMaterializationTask]
Exact architecture-owned payload tasks for this rank.
Sourcepub fn into_parts(
self,
) -> (A, ArchitecturePartition<G, W>, CommunicationManifest, Vec<ReplicatedTextMaterializationTask>)
pub fn into_parts( self, ) -> (A, ArchitecturePartition<G, W>, CommunicationManifest, Vec<ReplicatedTextMaterializationTask>)
Consumes the causal handoff into the values needed to build the rank-local runtime.
Auto Trait Implementations§
impl<A, G, W> Freeze for PartitionedSessionFactoryInput<A, G, W>
impl<A, G, W> RefUnwindSafe for PartitionedSessionFactoryInput<A, G, W>
impl<A, G, W> Send for PartitionedSessionFactoryInput<A, G, W>
impl<A, G, W> Sync for PartitionedSessionFactoryInput<A, G, W>
impl<A, G, W> Unpin for PartitionedSessionFactoryInput<A, G, W>
impl<A, G, W> UnsafeUnpin for PartitionedSessionFactoryInput<A, G, W>
impl<A, G, W> UnwindSafe for PartitionedSessionFactoryInput<A, G, W>
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