File tree Expand file tree Collapse file tree 5 files changed +11
-10
lines changed
Shuttle.Esb.Idempotence.Tests Expand file tree Collapse file tree 5 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 8
8
<owners >Eben Roux</owners >
9
9
<icon >images\logo.png</icon >
10
10
<readme >docs\README.md</readme >
11
- <repository type =" git" url =" https://github.com/Shuttle/Shuttle.Esb.Sql. Idempotence.git" />
12
- <projectUrl >https://github.com/Shuttle/Shuttle.Esb.Sql. Idempotence</projectUrl >
11
+ <repository type =" git" url =" https://github.com/Shuttle/Shuttle.Esb.Idempotence.git" />
12
+ <projectUrl >https://github.com/Shuttle/Shuttle.Esb.Idempotence</projectUrl >
13
13
<description >Fixture for testing base idempotence implementations.</description >
14
- <copyright >Copyright (c) 2024 , Eben Roux</copyright >
14
+ <copyright >Copyright (c) 2025 , Eben Roux</copyright >
15
15
<tags ></tags >
16
16
<dependencies >
17
17
<dependency id =" Microsoft.Extensions.Configuration.Json" version =" 8.0.1" />
Original file line number Diff line number Diff line change 2
2
3
3
public class IdempotenceMessageRouteProvider : IMessageRouteProvider
4
4
{
5
+ public async Task AddAsync ( IMessageRoute messageRoute )
6
+ {
7
+ await Task . CompletedTask . ConfigureAwait ( false ) ;
8
+ }
9
+
5
10
public async Task < IEnumerable < string > > GetRouteUrisAsync ( string messageType )
6
11
{
7
12
return await Task . FromResult ( GetRouteUris ( messageType ) ) . ConfigureAwait ( false ) ;
@@ -12,9 +17,5 @@ public IEnumerable<string> GetRouteUris(string messageType)
12
17
return new List < string > { "transient-queue://./idempotence-inbox-work" } ;
13
18
}
14
19
15
- public void Add ( IMessageRoute messageRoute )
16
- {
17
- }
18
-
19
20
public IEnumerable < IMessageRoute > MessageRoutes => [ ] ;
20
21
}
Original file line number Diff line number Diff line change 10
10
#endif
11
11
12
12
[ assembly: AssemblyVersion ( "20.0.0.0" ) ]
13
- [ assembly: AssemblyCopyright ( "Copyright (c) 2024 , Eben Roux" ) ]
13
+ [ assembly: AssemblyCopyright ( "Copyright (c) 2025 , Eben Roux" ) ]
14
14
[ assembly: AssemblyProduct ( "Shuttle.Esb.Idempotence.Tests" ) ]
15
15
[ assembly: AssemblyCompany ( "Eben Roux" ) ]
16
16
[ assembly: AssemblyConfiguration ( "Release" ) ]
Original file line number Diff line number Diff line change 13
13
<repository type =" git" url =" https://github.com/Shuttle/Shuttle.Esb.Idempotence.git" />
14
14
<projectUrl >https://github.com/Shuttle/Shuttle.Esb.Idempotence</projectUrl >
15
15
<description >Base idempotence implementation.</description >
16
- <copyright >Copyright (c) 2024 , Eben Roux</copyright >
16
+ <copyright >Copyright (c) 2025 , Eben Roux</copyright >
17
17
<tags >idempotence</tags >
18
18
<dependencies >
19
19
<dependency id =" Shuttle.Esb" version =" 20.0.0" />
Original file line number Diff line number Diff line change 10
10
#endif
11
11
12
12
[ assembly: AssemblyVersion ( "20.0.0.0" ) ]
13
- [ assembly: AssemblyCopyright ( "Copyright (c) 2024 , Eben Roux" ) ]
13
+ [ assembly: AssemblyCopyright ( "Copyright (c) 2025 , Eben Roux" ) ]
14
14
[ assembly: AssemblyProduct ( "Shuttle.Esb.Idempotence" ) ]
15
15
[ assembly: AssemblyCompany ( "Eben Roux" ) ]
16
16
[ assembly: AssemblyConfiguration ( "Release" ) ]
You can’t perform that action at this time.
0 commit comments