Package org.apache.ws.util

Examples of org.apache.ws.util.NamedThread


         m_reaperThreadPool.setMinimumPoolSize( 0 );
         m_reaperThreadPool.setMaximumPoolSize( 10 ); // TODO: make this configurable

         // create and start the main thread that periodically examines resources
         m_started             = true;
         m_mainReaperThread    = new NamedThread( this, "resource-reaper-main" );
         m_mainReaperThread.setDaemon( true );
         m_mainReaperThread.start(  );
      }

      // immediately return, our main reaper thread will periodically poll the registration manager
View Full Code Here

TOP

Related Classes of org.apache.ws.util.NamedThread

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.