636 B
636 B
Migrating from NServiceBus
Migrate from NServiceBus to Svrnty.CQRS.
Key Differences
| NServiceBus | Svrnty.CQRS |
|---|---|
IHandleMessages<T> |
ICommandHandler<T> or IQueryHandler<T> |
| Separate message broker | Built-in event streaming |
| Saga pattern | ISaga interface |
| Publish/Subscribe | Event streaming |
Migration Steps
- Map message handlers to command/query handlers
- Convert sagas to ISaga implementations
- Replace message bus with event streams
- Update configuration