Deleted Basket Fail (v1.0.0)
Represents a failed integration event when deleting a basket in the system
Overview
The DeleteBasketFailedCommand
is an integration event published by the Finance service when a basket deletion operation fails during the order processing workflow. This command is part of the error handling mechanism in the order processing saga and is used to notify other services about the failure, allowing them to take appropriate recovery actions.
Architecture
Message Structure
The command contains the following properties:
Property | Type | Description |
---|---|---|
BasketId | Guid | Unique identifier for the basket that failed to be deleted |
Email | string? | Customer’s email address (optional) for notification purposes |
OrderId | Guid | Unique identifier for the associated order |
TotalMoney | decimal | Total monetary value of the basket/order |
Workflow Context
This command is published by the Order State Machine when the following conditions are met:
- The order is in the
Placed
state - A
BasketDeletedFailedIntegrationEvent
is received - The order transitions to the
Failed
state - The command is published to notify downstream services
Technical Implementation
The DeleteBasketFailedCommand
is implemented as follows:
[AsyncApi][Channel("basket-checkout-failed")][SubscribeOperation( typeof(DeleteBasketFailedCommand), OperationId = nameof(DeleteBasketFailedCommand), Summary = "Delete basket failed")]public sealed record DeleteBasketFailedCommand( Guid BasketId, string? Email, Guid OrderId, decimal TotalMoney) : IntegrationEvent;
Within the Order State Machine, the command is published during the state transition:
When(BasketDeletedFailed) .Then(context => { context.Saga.OrderId = context.Message.OrderId; context.Saga.BasketId = context.Message.BasketId; context.Saga.Email = context.Message.Email; context.Saga.TotalMoney = context.Message.TotalMoney;
logger.LogInformation( "[{Event}] Basket deletion failed for {OrderId}", nameof(BasketDeletedFailed), context.Message.OrderId ); }) .TransitionTo(Failed) .Publish(context => new DeleteBasketFailedCommand( context.Saga.BasketId, context.Saga.Email, context.Saga.OrderId, context.Saga.TotalMoney.GetValueOrDefault(0.0M) ))
Error Handling
This command plays a critical role in the error handling flow of the order processing saga:
- When a basket deletion fails, the saga transitions to the
Failed
state - The
DeleteBasketFailedCommand
is published to notify downstream services - Downstream services can implement recovery mechanisms or compensating transactions
- The customer may be notified about the failure if an email address is available
Consuming Services
This command is typically consumed by:
- Notification Service: To send failure notifications to customers
- Ordering Service: To roll back the order