forked from ardalis/pluralsight-ddd-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename ApplicationEvent to IntegrationEvent
- Loading branch information
Showing
3 changed files
with
14 additions
and
9 deletions.
There are no files selected for viewing
7 changes: 0 additions & 7 deletions
7
SharedKernel/src/PluralsightDdd.SharedKernel/Interfaces/IApplicationEvent.cs
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
SharedKernel/src/PluralsightDdd.SharedKernel/Interfaces/IIntegrationEvent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace PluralsightDdd.SharedKernel.Interfaces | ||
{ | ||
/// <summary> | ||
/// Integration events are used to communicate between bounded contexts and/or applications. | ||
/// They are often mapped from domain events in the notifying system | ||
/// and sometimes to domain events in the consuming system | ||
/// </summary> | ||
public interface IIntegrationEvent | ||
{ | ||
string EventType { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters