Skip to content

Commit

Permalink
Rename ApplicationEvent to IntegrationEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis committed Apr 27, 2021
1 parent 59dbcf4 commit 0565bda
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.

This file was deleted.

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; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<Summary>Includes common abstractions and base types.</Summary>
<RepositoryUrl>https://github.com/ardalis/pluralsight-ddd-fundamentals</RepositoryUrl>
<PackageTags>aspnet asp.net aspnetcore asp.net core ddd dddesign value object entity aggregate domain event pluralsight</PackageTags>
<PackageReleaseNotes>Finish converting DateTimeOffsetRange to use DateTimeOffset everywhere.</PackageReleaseNotes>
<Version>1.2.2</Version>
<PackageReleaseNotes>Change ApplicationEvent to IntegrationEvent.</PackageReleaseNotes>
<Version>2.0.0</Version>
<AssemblyName>PluralsightDdd.SharedKernel</AssemblyName>
<PackageIconUrl>https://user-images.githubusercontent.com/782127/33497760-facf6550-d69c-11e7-94e4-b3856da259a9.png</PackageIconUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
Expand Down

0 comments on commit 0565bda

Please sign in to comment.