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