File tree Expand file tree Collapse file tree 2 files changed +3
-18
lines changed
src/EventDriven.EventBus.Abstractions Expand file tree Collapse file tree 2 files changed +3
-18
lines changed Original file line number Diff line number Diff line change 4
4
<TargetFramework >net6.0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
7
- <Version >1.2.0-beta2 </Version >
7
+ <Version >1.2.0-beta3 </Version >
8
8
<Description >An event bus abstraction layer.</Description >
9
9
<PackageLicenseExpression >MIT</PackageLicenseExpression >
10
10
<PackageIcon >eda-logo.jpeg</PackageIcon >
13
13
<RepositoryUrl >https://github.com/event-driven-dotnet/EventDriven.EventBus.Abstractions.git</RepositoryUrl >
14
14
<RepositoryType >git</RepositoryType >
15
15
<PackageTags >event-bus event-driven event-driven-architecture</PackageTags >
16
- <PackageReleaseNotes >https://github.com/event-driven-dotnet/EventDriven.EventBus.Abstractions/releases/tag/v1.2.0-beta2 </PackageReleaseNotes >
16
+ <PackageReleaseNotes >https://github.com/event-driven-dotnet/EventDriven.EventBus.Abstractions/releases/tag/v1.2.0-beta3 </PackageReleaseNotes >
17
17
<PackageId >EventDriven.EventBus.Abstractions</PackageId >
18
18
<GenerateDocumentationFile >True</GenerateDocumentationFile >
19
19
</PropertyGroup >
Original file line number Diff line number Diff line change 3
3
4
4
namespace EventDriven . EventBus . Abstractions ;
5
5
6
- /// <summary>
7
- /// Event handing repository interface.
8
- /// </summary>
9
- public interface IEventHandlingRepository
10
- {
11
- /// <summary>
12
- /// Remove expired events.
13
- /// </summary>
14
- /// <returns>
15
- /// Task that will complete when the operation has completed.
16
- /// Task contains number of items deleted.
17
- /// </returns>
18
- Task < int > RemoveExpiredEventsAsync ( ) ;
19
- }
20
-
21
6
/// <summary>
22
7
/// Event handing repository interface.
23
8
/// </summary>
24
9
/// <typeparam name="TIntegrationEvent">Integration event type.</typeparam>
25
- public interface IEventHandlingRepository < TIntegrationEvent > : IEventHandlingRepository
10
+ public interface IEventHandlingRepository < TIntegrationEvent >
26
11
where TIntegrationEvent : IntegrationEvent
27
12
{
28
13
/// <summary>
You can’t perform that action at this time.
0 commit comments