示例#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);
 }