예제 #1
0
 public Promise Then(Promise promise)
 {
     GetContinuation().Continuation = promise;
     return(this);
 }
예제 #2
0
 private void OnFinished(Promise promise)
 {
     Continuation      = null;
     promise.Finished -= OnFinished;
     OnFinished();
 }