@@ -5,6 +5,17 @@ namespace Microsoft.Extensions.DependencyInjection;
5
5
6
6
public static class ServiceCollectionExtensions
7
7
{
8
+ public static IServiceCollection AddIntegrationEventBus (
9
+ this IServiceCollection services ,
10
+ Action < DispatcherOptions > ? options = null )
11
+ => services . AddIntegrationEventBus ( AppDomain . CurrentDomain . GetAssemblies ( ) , options ) ;
12
+
13
+ public static IServiceCollection AddIntegrationEventBus (
14
+ this IServiceCollection services ,
15
+ Assembly [ ] assemblies ,
16
+ Action < DispatcherOptions > ? options = null )
17
+ => services . TryAddIntegrationEventBus ( assemblies , options ) ;
18
+
8
19
public static IServiceCollection AddIntegrationEventBus < TIntegrationEventLogService > (
9
20
this IServiceCollection services ,
10
21
Action < DispatcherOptions > ? options = null )
@@ -23,6 +34,18 @@ internal static IServiceCollection TryAddIntegrationEventBus<TIntegrationEventLo
23
34
Assembly [ ] assemblies ,
24
35
Action < DispatcherOptions > ? options )
25
36
where TIntegrationEventLogService : class , IIntegrationEventLogService
37
+ {
38
+ return services . TryAddIntegrationEventBus ( assemblies , options , ( ) =>
39
+ {
40
+ services . AddScoped < IIntegrationEventLogService , TIntegrationEventLogService > ( ) ;
41
+ } ) ;
42
+ }
43
+
44
+ internal static IServiceCollection TryAddIntegrationEventBus (
45
+ this IServiceCollection services ,
46
+ Assembly [ ] assemblies ,
47
+ Action < DispatcherOptions > ? options ,
48
+ Action ? action = null )
26
49
{
27
50
if ( services . Any ( service => service . ImplementationType == typeof ( IntegrationEventBusProvider ) ) )
28
51
return services ;
@@ -37,7 +60,7 @@ internal static IServiceCollection TryAddIntegrationEventBus<TIntegrationEventLo
37
60
38
61
LocalQueueProcessor . SetLogger ( services ) ;
39
62
services . AddScoped < IIntegrationEventBus , IntegrationEventBus > ( ) ;
40
- services . AddScoped < IIntegrationEventLogService , TIntegrationEventLogService > ( ) ;
63
+ action ? . Invoke ( ) ;
41
64
services . AddSingleton < IProcessor , RetryByDataProcessor > ( ) ;
42
65
services . AddSingleton < IProcessor , RetryByLocalQueueProcessor > ( ) ;
43
66
services . AddSingleton < IProcessor , DeletePublishedExpireEventProcessor > ( ) ;
0 commit comments