pub struct SagaManager<A, AR, Publisher, Saga, Error>
where Publisher: ActionPublisher<A, Error>, Saga: ActionComputation<AR, A>,
{ /* private fields */ }
Expand description

Saga Manager.

It is using a [Saga] to react to the action result and to publish the new actions. It is using an ActionPublisher to publish the new actions.

Generic parameters:

  • A - Action / Command
  • AR - Action Result / Event
  • Publisher - Action Publisher
  • Error - Error

Implementations§

source§

impl<A, AR, Publisher, Saga, Error> SagaManager<A, AR, Publisher, Saga, Error>
where Publisher: ActionPublisher<A, Error>, Saga: ActionComputation<AR, A>,

source

pub fn new(action_publisher: Publisher, saga: Saga) -> Self

Creates a new instance of SagaManager.

source

pub async fn handle(&self, action_result: &AR) -> Result<Vec<A>, Error>

Handles the action result by publishing it to the external system.

Auto Trait Implementations§

§

impl<A, AR, Publisher, Saga, Error> RefUnwindSafe for SagaManager<A, AR, Publisher, Saga, Error>
where A: RefUnwindSafe, AR: RefUnwindSafe, Error: RefUnwindSafe, Publisher: RefUnwindSafe, Saga: RefUnwindSafe,

§

impl<A, AR, Publisher, Saga, Error> Send for SagaManager<A, AR, Publisher, Saga, Error>
where A: Send, AR: Send, Error: Send, Publisher: Send, Saga: Send,

§

impl<A, AR, Publisher, Saga, Error> Sync for SagaManager<A, AR, Publisher, Saga, Error>
where A: Sync, AR: Sync, Error: Sync, Publisher: Sync, Saga: Sync,

§

impl<A, AR, Publisher, Saga, Error> Unpin for SagaManager<A, AR, Publisher, Saga, Error>
where A: Unpin, AR: Unpin, Error: Unpin, Publisher: Unpin, Saga: Unpin,

§

impl<A, AR, Publisher, Saga, Error> UnwindSafe for SagaManager<A, AR, Publisher, Saga, Error>
where A: UnwindSafe, AR: UnwindSafe, Error: UnwindSafe, Publisher: UnwindSafe, Saga: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.