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