Machine.Mta.NsbMessageBusFactory.EachBus C# (CSharp) Method

EachBus() public method

public EachBus ( Action action ) : void
action Action
return void
    public void EachBus(Action<IStartableBus> action)
    {
      _all.Each(b => action(b.StartableBus));
    }

Same methods

NsbMessageBusFactory::EachBus ( Action action ) : void