public ClientNotifier(RMIConnection rmiConnection)
{
this.connection = rmiConnection;
clientListeners = new SyncMap(new HashMap(), new ReaderPreferenceReadWriteLock());
fetchTimer = new Timer(true);
//TODO: -TME Need to make the fetch period configurable (JBREM-151)
fetchTimer.schedule(this, 1000, 1000);
notifierPool = new BasicThreadPool("JBoss JMX Remoting client notifier");