Just wondering, can this indicate the start order of the handler (AuthorizationHandler) before everyone else?
public void SpecifyOrder(Order order)
{
order.Specify(First<AuthorizationHandler>.Then<IHandleMessages<IMessage>>());
}
It seems weird to add Then<IHandleMessages<IMessage>>().
Is there a better way to tell the handler x to execute the bus before all the others?
source
share