internal FutureExceptionEventHandlerChain(
     FutureExceptionEventHandler handler,
     FutureExceptionEventHandlerChain next)
 {
     this._handler = handler;
     this._next = next;
 }
 internal FutureExceptionEventHandlerChain(
     FutureExceptionEventHandler handler,
     FutureExceptionEventHandlerChain next)
 {
     this._handler = handler;
     this._next    = next;
 }
 internal Event(
     Future future,
     Exception exception,
     FutureExceptionEventHandlerChain next)
 {
     this._future = future;
     this._exception = exception;
     this._next = next;
 }
 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);
 }