Getting Started
Architecture
NServiceBus
Transports
Persistence
ServiceInsight
ServicePulse
ServiceControl
Monitoring
Samples

Handlers and Sagas

Component: NServiceBus

There are two standard ways of executing code when a message is processed: handlers and sagas.

Handler instances are instantiated on a per-message basis, executed, and then disposed of.

Saga instances are also instantiated on a per-message basis, executed, and then disposed of. However they differ from handlers in that, once instantiated, they are passed an instance of a "Data" class. The "Saga Data" is persistent state that is shared between a given saga type based on a key.

Other concepts that both handlers and sagas share:

Samples

Related Articles

  • Handlers
    Write a class to handle messages in NServiceBus.
  • Sagas
    Maintain statefulness in distributed systems with the saga pattern and NServiceBus' event-driven architecture with built-in fault-tolerance and scalability.