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