Saga per customer

Is it possible to have saga per customer with FIFO message processing?
so sagas could behave like actors in akkanet; one customer - one state - processing only 1 message at once

A saga instance can be per per customer if the correlation ID is the customer ID. Sagas process a single message at a time. There’s no support for ordered messages in NServiceBu

Saga is a coordinator, not an actor. If you need an actor, use the right tool.

Kamil,

Could you describe why FIFO processing is important on this per-customer basis for your environment?

Udi