/// <summary> /// Specifies the handler that will be put next in the pipeline if it is present - call <see cref="Then{THandler}"/> /// again to specify the next handler /// </summary> public AdditionalReorderingConfiguration Then <THandler>() where THandler : IHandleMessages { _reorderingConfiguration.Add <THandler>(); return(this); }