internal FutureExceptionEventHandlerChain(
     FutureExceptionEventHandler handler,
     FutureExceptionEventHandlerChain next)
 {
     this._handler = handler;
     this._next = next;
 }
 internal FutureExceptionEventHandlerChain(
     FutureExceptionEventHandler handler,
     FutureExceptionEventHandlerChain next)
 {
     this._handler = handler;
     this._next    = next;
 }
Exemplo n.º 3
0
 public void InvokeLator <ResultType>(
     Future <ResultType> future,
     FutureExceptionEventHandler handler0,
     FutureCompleted <ResultType> completed)
 {
     this.Component.InvokeLator(
         future,
         handler0,
         completed);
 }
Exemplo n.º 4
0
 public void InvokeLator <ResultType>(
     Future <ResultType> future,
     FutureExceptionEventHandler handler0,
     FutureExceptionEventHandler handler1,
     FutureExceptionEventHandler handler2,
     FutureExceptionEventHandler handler3,
     FutureCompleted <ResultType> completed)
 {
     this.InvokeLator(
         future,
         completed,
         handler0,
         handler1,
         handler2,
         handler3);
 }