protected override void ConfigureRabbitMqReceiveEndoint(IRabbitMqReceiveEndpointConfigurator configurator) { base.ConfigureRabbitMqReceiveEndoint(configurator); _consumer = new ReconnectConsumer(TestTimeout); _consumer.Configure(configurator); }
protected override void ConfigureInputQueueEndpoint(IRabbitMqReceiveEndpointConfigurator configurator) { base.ConfigureInputQueueEndpoint(configurator); _consumer = new ReconnectConsumer(TestTimeout); _consumer.Configure(configurator); }
protected override void ConfigureActiveMqReceiveEndpoint(IActiveMqReceiveEndpointConfigurator configurator) { base.ConfigureActiveMqReceiveEndpoint(configurator); _consumer = new ReconnectConsumer(TestTimeout); _consumer.Configure(configurator); configurator.Handler <PingMessage>(context => context.RespondAsync(new PongMessage(context.Message.CorrelationId))); }