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