using Abp.Dependency; using Abp.Events.Bus; namespace Abp.Configuration.Startup { /// /// Used to configure . /// public interface IEventBusConfiguration { /// /// True, to use . /// False, to create per . /// This is generally set to true. But, for unit tests, /// it can be set to false. /// Default: true. /// bool UseDefaultEventBus { get; set; } } }