示例#1
0
        public static async Task StartSubscription(this IEventStoreConnection eventBus, EventStoreOptions options, EventTypeResolver typeResolver, Func <object, Task> messageSender)
        {
            await CreateSubscription(eventBus, options);

            await eventBus.Subscribe(typeResolver, options.Subscription, async msg => await messageSender(msg));
        }