Package EDU.oswego.cs.dl.util.concurrent

Examples of EDU.oswego.cs.dl.util.concurrent.SyncMap



   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");
View Full Code Here

TOP

Related Classes of EDU.oswego.cs.dl.util.concurrent.SyncMap

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.