...
Bloco de código | ||||||
---|---|---|---|---|---|---|
| ||||||
// typeof(TnfAppBusQueueModule),
// typeof(TnfAppBusClientModule),
Configuration.BusClientSetup()
.SetIocManager(IocManager)
.SetExchangeRouter("default", e => exchangeRouter)
.AddPublishers(() => new PublisherListener(Configuration.BusClientSetup().GetExchangeRouterInstance("default")))
.AddSubscribers(() => new SubscriberListener(Configuration.BusClientSetup().GetExchangeRouterInstance("default")))
.Verify(this)
.Run(); |
Nota | ||
---|---|---|
| ||
Lembre-se: Um ExchangeRouter pode fazer bind para publicadores e assinantes ao mesmo tempo. |
...