Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Latest commit

 

History

History
21 lines (17 loc) · 963 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 963 Bytes

Rebus.Outbox

Provides a transactional outbox abstraction to use with Rebus.

Build NuGet NuGet

Why?

Rebus doesn't currently include an abstraction to implement Transactional outbox.

How to use

This is just an abstraction that should be implemented to use a specific storage. For example a possible SQL Server outbox configuration would be something like:

Configure.With(...)
	.(...)
	.Outbox(o => o.UseSqlServer(...))
	.Start();