pub struct PropagatedHistoryChunk {
pub app_id: String,
pub instance_id: String,
pub workflow_name: String,
pub start_event_index: i32,
pub event_count: i32,
pub events: Vec<HistoryEvent>,
}Expand description
A single per-app slice of propagated history.
One chunk corresponds to all events produced by a single workflow
instance running on a single Dapr app. When Lineage is used, multiple
chunks describe the full ancestor chain in execution order.
Fields§
§app_id: StringThe Dapr app ID that produced these events.
instance_id: StringThe workflow instance ID that produced these events.
workflow_name: StringThe workflow function name that produced these events.
start_event_index: i32Index of the first event in this chunk relative to the propagated stream as a whole.
event_count: i32Number of events in this chunk.
events: Vec<HistoryEvent>Decoded history events for this chunk, in execution order.
Trait Implementations§
Source§impl Clone for PropagatedHistoryChunk
impl Clone for PropagatedHistoryChunk
Source§fn clone(&self) -> PropagatedHistoryChunk
fn clone(&self) -> PropagatedHistoryChunk
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PropagatedHistoryChunk
impl RefUnwindSafe for PropagatedHistoryChunk
impl Send for PropagatedHistoryChunk
impl Sync for PropagatedHistoryChunk
impl Unpin for PropagatedHistoryChunk
impl UnsafeUnpin for PropagatedHistoryChunk
impl UnwindSafe for PropagatedHistoryChunk
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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