Wolverine
Wolverine provides a robust command and messaging system for BlazorSaas within the .NET ecosystem. It enhances application resilience and simplifies asynchronous processing.
Why We Use It
BlazorSaas employs Wolverine to streamline command handling and messaging with minimal overhead. It offers built-in support for reliable message delivery and integrates seamlessly with .NET tools. This ensures efficient and resilient communication across the application.
How We Use It
BlazorSaas developers create handlers to encapsulate domain logic for core operations.
Wolverine generates code to wire these handlers and invoke them during message processing.
The code
Nuke target produces this generated code in the internal
directory.
It supports inbox and outbox messaging patterns for reliable data exchange.
It applies CQRS when processing GraphQL mutations and manages out-of-process updates, such as Stripe webhook calls.
Currently, it operates as a single-node system within the template.
How It Scales
Wolverine can transition from a single-node setup to a multi-node system as application demands increase. It integrates with robust messaging systems like RabbitMQ or Kafka for distributed processing. This adaptability supports growing workloads and complex architectures.
Resources
- Website: wolverinefx.io
- Documentation: wolverinefx.io/documentation
- GitHub: github.com/JasperFx/wolverine