Fan.Sys.Future.isCancelled C# (CSharp) Method

isCancelled() public method

public isCancelled ( ) : bool
return bool
        public bool isCancelled()
        {
            return m_state == DONE_CANCEL;
        }

Usage Example

Ejemplo n.º 1
0
 internal void _dispatch(Future future)
 {
     try
     {
         if (future.isCancelled())
         {
             return;
         }
         if (m_pool.m_killed)
         {
             future.cancel(); return;
         }
         future.set(receive(future.m_msg));
     }
     catch (Err.Val e)
     {
         future.err(e.m_err);
     }
     catch (System.Exception e)
     {
         future.err(Err.make(e));
     }
 }
All Usage Examples Of Fan.Sys.Future::isCancelled