https://github.com/shuttle/shuttle.esb.purgeinbox
The PurgeInbox extension clears the inbox work queue upon startup.
https://github.com/shuttle/shuttle.esb.purgeinbox
Last synced: about 1 month ago
JSON representation
The PurgeInbox extension clears the inbox work queue upon startup.
- Host: GitHub
- URL: https://github.com/shuttle/shuttle.esb.purgeinbox
- Owner: Shuttle
- License: bsd-3-clause
- Created: 2024-02-05T17:00:27.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-02T14:10:12.000Z (3 months ago)
- Last Synced: 2025-03-23T22:14:18.205Z (about 2 months ago)
- Language: C#
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Purge Inbox
```
PM> Install-Package Shuttle.Esb.PurgeInbox
```The PurgeInbox module for Shuttle.Esb clears the inbox work queue upon startup.
The module will attach the `PurgeInboxObserver` to the `OnAfterConfigure` event of the `StartupPipeline` and purges the inbox work queue if the relevant queue implementation has implemented the `IPurgeQueue` interface. If the inbox work queue implementation has *not* implemented the `IPurgeQueue` interface the purge is ignored.
## Configuration
```c#
services.AddPurgeInbox();
```