Package org.eclipse.ecf.provider.generic

Examples of org.eclipse.ecf.provider.generic.TCPServerSOContainer.dispose()


  protected synchronized void destroyServers() {
    for (final Iterator i = servers.iterator(); i.hasNext();) {
      final TCPServerSOContainer s = (TCPServerSOContainer) i.next();
      if (s != null) {
        try {
          s.dispose();
        } catch (final Exception e) {
          ClientPlugin.log("Exception destroying server " + s.getConfig().getID()); //$NON-NLS-1$
        }
      }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.