Completed() private method

Called when the operation complete
private Completed ( ) : void
return void
Esempio n. 1
0
 /// <summary>
 /// Called when the running of a Future is aborted for whatever reason
 /// </summary>
 public void RunAborted()
 {
     CheckForDoubleRun();
     Interlocked.Exchange(ref m_aborted, 1);
     m_op.Completed();
     OnFutureCompleted();
 }