-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Program.cs
28 lines (24 loc) · 1.18 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using CustomEventConfigurator;
using Tingle.EventBus.Configuration;
var host = Host.CreateDefaultBuilder(args)
.ConfigureServices((hostContext, services) =>
{
services.AddEventBus(builder =>
{
// Transport agnostic configuration
builder.Configure(o =>
{
o.Naming.Scope = "dev"; // queues will be prefixed by 'dev'
o.Naming.UseFullTypeNames = false;
});
builder.AddConsumer<SampleConsumer1>();
builder.AddConsumer<SampleConsumer2>();
// Setup extra configurators
// You can have as many as you like, these are called after the default one.
builder.Services.AddSingleton<IEventBusConfigurator, MyConfigurator>();
// Transport specific configuration
builder.AddAzureQueueStorageTransport(o => o.Credentials = "UseDevelopmentStorage=true;");
});
})
.Build();
await host.RunAsync();