コード例 #1
0
 internal FutureExceptionEventHandlerChain(
     FutureExceptionEventHandler handler,
     FutureExceptionEventHandlerChain next)
 {
     this._handler = handler;
     this._next = next;
 }
コード例 #2
0
 internal FutureExceptionEventHandlerChain(
     FutureExceptionEventHandler handler,
     FutureExceptionEventHandlerChain next)
 {
     this._handler = handler;
     this._next    = next;
 }
コード例 #3
0
 internal Event(
     Future future,
     Exception exception,
     FutureExceptionEventHandlerChain next)
 {
     this._future = future;
     this._exception = exception;
     this._next = next;
 }
コード例 #4
0
 internal Event(
     Future future,
     Exception exception,
     FutureExceptionEventHandlerChain next)
 {
     this._future    = future;
     this._exception = exception;
     this._next      = next;
 }
コード例 #5
0
 protected internal FutureTask()
 {
     this._task = null;
     this._onErrorHandlerChain = null;
     this._cancelling          = false;
     this._cancelled           = false;
     this._resulted            = false;
     this._done   = false;
     this._result = default(ResultType);
 }