public static void FireAsync <T>(this IEventBusService eventBusService) where T : struct { eventBusService.FireAsync(DEFAULT_CHANNEL, default(T)); }
public static void FireAsync <T>(this IEventBusService eventBusService, ChannelId channel) where T : struct { eventBusService.FireAsync(channel, default(T)); }
public static void FireAsync <T>(this IEventBusService eventBusService, T data) { eventBusService.FireAsync(DEFAULT_CHANNEL, data); }