Example #1
0
 public static void FireStickyAsync <T>(this IEventBusService eventBusService) where T : struct
 {
     eventBusService.FireStickyAsync(DEFAULT_CHANNEL, default(T));
 }
Example #2
0
 public static void FireStickyAsync <T>(this IEventBusService eventBusService, ChannelId channel) where T : struct
 {
     eventBusService.FireStickyAsync(channel, default(T));
 }
Example #3
0
 public static void FireStickyAsync <T>(this IEventBusService eventBusService, T data)
 {
     eventBusService.FireStickyAsync(DEFAULT_CHANNEL, data);
 }