Enum OutboxSaveMode
Controls when an outbox message is committed.
Namespace: Chapar.Outbox.EntityFrameworkCore
Assembly: Chapar.Outbox.EntityFrameworkCore.dll
Syntax
public enum OutboxSaveMode
Fields
| Name | Description |
|---|---|
| Immediate | Commit the outbox message immediately using a separate SaveChanges call. |
| Transactional | Stage the outbox message and commit it with the caller's unit of work. |