24252627282930
public class MessageBusFactory { private MessageBusFactory() {} public static MessageBus newMessageBus(@NotNull Object owner) { return new MessageBusImpl(owner, null); }
28293031323334
public static MessageBus newMessageBus(@NotNull Object owner) { return new MessageBusImpl(owner, null); } public static MessageBus newMessageBus(@NotNull Object owner, MessageBus parentBus) { return new MessageBusImpl(owner, parentBus); }
23242526272829
public class MessageBusFactory { private MessageBusFactory() {} public static MessageBus newMessageBus(Object owner) { return new MessageBusImpl(owner, null); }
27282930313233
public static MessageBus newMessageBus(Object owner) { return new MessageBusImpl(owner, null); } public static MessageBus newMessageBus(Object owner, MessageBus parentBus) { return new MessageBusImpl(owner, parentBus); }