Ejemplo n.º 1
0
        /// <summary>
        /// Initiates the configuration of the handler ordering - call <see cref="ReorderingConfiguration.First{THandler}"/> in
        /// order to specify the handler that will be put first in the pipeline if it is present
        /// </summary>
        public static ReorderingConfiguration SpecifyOrderOfHandlers(this OptionsConfigurer configurer)
        {
            var configuration = new ReorderingConfiguration();

            configurer.Register(c => new HandlerReorderingStep(configuration));

            configurer.Decorate <IPipeline>(c =>
            {
                var pipeline = c.Get <IPipeline>();
                var step     = c.Get <HandlerReorderingStep>();

                return(new PipelineStepInjector(pipeline)
                       .OnReceive(step, PipelineRelativePosition.Before, typeof(DispatchIncomingMessageStep)));
            });

            return(configuration);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructs the step with the given configuration
 /// </summary>
 public HandlerReorderingStep(ReorderingConfiguration configuration)
 {
     _configuration = configuration;
 }