cancel() public method

public cancel ( ) : void
return void
Example #1
0
        public void _kill()
        {
            // get/reset the pending queue
            Queue queue = null;

            lock (m_lock)
            {
                queue        = this.m_queue;
                this.m_queue = new Queue();
            }

            // cancel all pending messages
            while (true)
            {
                Future future = queue.get();
                if (future == null)
                {
                    break;
                }
                future.cancel();
            }
        }
Example #2
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));
     }
 }
Example #3
0
File: Actor.cs Project: nomit007/f4
 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));
       }
 }