Package org.apache.etch.util

Examples of org.apache.etch.util.Todo


  private void fireUp( MyAcceptHandler h )
  {
    setHandler( h );
    status.set( Session.UP );
   
    TodoManager.addTodo( new Todo()
    {
      public void doit( TodoManager m ) throws Exception
      {
        session.sessionNotify( Session.UP );
      }
View Full Code Here


  private void fireDown()
  {
    setHandler( null );
    status.set( Session.DOWN );
   
    TodoManager.addTodo( new Todo()
    {
      public void doit( TodoManager m ) throws Exception
      {
        session.sessionNotify( Session.DOWN );
      }
View Full Code Here

 
  private final TodoManager mgr;
 
  public void run( final PoolRunnable runnable ) throws Exception
    {
        mgr.add( new Todo()
        {
      public void doit( TodoManager mgr ) throws Exception
            {
                runnable.run();
            }
View Full Code Here

TOP

Related Classes of org.apache.etch.util.Todo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.