Deleted Basket Complete (v1.0.0)
Represents a domain event that is published when reverse basket is completed
Overview
The PublishCompletedEvent
is an integration event that signals the successful completion of a reverse basket operation in the system. This event serves as a confirmation mechanism between the Basket and Ordering contexts, indicating that a basket has been successfully deleted and the associated order has been processed. It carries essential information about the completed operation, including the order and basket identifiers.
Purpose
This event serves several important purposes:
- Confirms successful basket deletion operations
- Maintains system consistency between Basket and Ordering contexts
- Provides audit trail for completed operations
- Facilitates proper state management in the system
Event Structure
The event contains the following key information:
OrderId
: Unique identifier for the associated orderBasketId
: Identifier of the successfully deleted basketTotalMoney
: Total monetary value of the basket at the time of deletion
Usage
This event is typically published when:
- A basket deletion operation completes successfully
- The system needs to confirm the transition from basket to order
- Audit trails need to be maintained
Architecture
Success Handling
When this event is published, the system should:
- Log the successful completion
- Update relevant system states
- Trigger any necessary follow-up processes
- Maintain audit records