Changed Order Status To Cancel (v1.0.0)
Represents an integration event when an order status is changed to cancel
Overview
This event represents an integration event when an order status is changed to cancel. The OrderStatusChangedToCancelIntegrationEvent
is a domain event that captures the change of an order’s status to cancel in the Ordering bounded context. It carries the necessary value objects including the order identity, the new status, and the cancellation reason to notify the system about the status change. This event adheres to the ubiquitous language of our domain and serves as the contract between the Ordering and external systems, facilitating the transition from a pending order to a cancelled one.
Architecture
Event Structure
The event contains the following key properties:
Property | Type | Description |
---|---|---|
OrderId | Guid | Unique identifier for the order being cancelled |
BasketId | Guid | Identifier of the basket associated with the order |
Email | string? | Customer’s email address (optional) for notifications |
TotalMoney | decimal | Total monetary value of the cancelled order |
Technical Implementation
The OrderStatusChangedToCancelIntegrationEvent
is implemented as a simple record in C#:
public sealed record OrderStatusChangedToCancelIntegrationEvent( Guid OrderId, Guid BasketId, string? Email, decimal TotalMoney) : IntegrationEvent;
Workflow Context
This event plays an important role in the order cancellation workflow:
- It is published by the Ordering service when an order is cancelled
- The Finance service receives this event and updates the order state machine
- The event triggers the transition to the Cancelled state in the Finance service
- It may initiate compensating transactions or recovery actions
Cross-Service Communication
This event facilitates communication between several bounded contexts:
- Ordering → Finance: Notifies about order cancellation
- Finance → Notification: May trigger cancellation notifications to customers
Business Impact
From a business perspective, this event represents several important aspects:
- Customer decision to cancel an order
- Opportunity to gather cancellation reasons for business intelligence
- Trigger for potential customer retention actions
- Signal to release reserved inventory or payment holds