53 readonly Action<V, A> onCompleted;
54 readonly Action<Exception, A> onFailed;
63 this.onCompleted = onCompleted;
64 this.onFailed = onFailed;
72 void CompletionHandler.completed(
object result,
object attachment)
74 onCompleted((V)result, (A)attachment);
82 void CompletionHandler.failed(Exception exc,
object attachment)
84 onFailed(exc, (A)attachment);