예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BlockingBase"/> class.
 /// </summary>
 protected BlockingBase()
 {
     this.disposeAction = new InvokeAtMostOnce(this.OnDispose);
     this.mre           = new ManualResetEventSlim(initialState: false); // nonsignaled
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NonBlockingBase"/> class.
 /// </summary>
 protected NonBlockingBase()
 {
     this.disposeAction = new InvokeAtMostOnce(this.OnDispose);
 }