pub struct Concurrency {
pub max_runs: u32,
pub on_overflow: OnOverflow,
pub scope: ConcurrencyScope,
}Fields§
§max_runs: u32§on_overflow: OnOverflow§scope: ConcurrencyScopeWhat max_runs counts: every run of this workflow (workflow, the
default and today’s behaviour), or every run ABOUT THE SAME THING
(key, using the workflow’s key: template).
The distinction is the difference between a queue and a lock. With
scope: workflow, max_runs: 1 serialises every customer behind one
run, so per-entity ordering means one workflow definition per entity.
With scope: key each entity is serialised against itself and the
entities run in parallel.
Trait Implementations§
Source§impl Clone for Concurrency
impl Clone for Concurrency
Source§fn clone(&self) -> Concurrency
fn clone(&self) -> Concurrency
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 moreSource§impl Debug for Concurrency
impl Debug for Concurrency
Source§impl Default for Concurrency
impl Default for Concurrency
Source§impl<'de> Deserialize<'de> for Concurrency
impl<'de> Deserialize<'de> for Concurrency
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Concurrency
Source§impl PartialEq for Concurrency
impl PartialEq for Concurrency
Source§impl Serialize for Concurrency
impl Serialize for Concurrency
impl StructuralPartialEq for Concurrency
Auto Trait Implementations§
impl Freeze for Concurrency
impl RefUnwindSafe for Concurrency
impl Send for Concurrency
impl Sync for Concurrency
impl Unpin for Concurrency
impl UnsafeUnpin for Concurrency
impl UnwindSafe for Concurrency
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