Example #1
0
 public static void ClearSticky <T>(this IEventBusService eventBusService)
 {
     eventBusService.GetSticky <T>(DEFAULT_CHANNEL);
 }
Example #2
0
 public static T GetSticky <T>(this IEventBusService eventBusService)
 {
     return(eventBusService.GetSticky <T>(DEFAULT_CHANNEL));
 }