예제 #1
0
 public static void SetShouldThrowWhenException(this ISignalREvent @event, ISignalREventHandler handler, bool shouldThrow)
 {
     @event.Set(handler, ShouldThrowWhenException, shouldThrow);
 }
예제 #2
0
 public static void SetStopSend(this ISignalREvent @event, ISignalREventHandler handler, bool shouldStop)
 {
     @event.Set(handler, ShouldStopSend, shouldStop);
 }
예제 #3
0
 public static void SetShouldWaitComplete(this ISignalREvent @event, ISignalREventHandler handler, bool shouldWait)
 {
     @event.Set(handler, ShouldWaitComplete, shouldWait);
 }