Package xnap.plugin.nap.net.msg.client

Examples of xnap.plugin.nap.net.msg.client.ClientMessage


    public synchronized void clear()
    {
  logger.debug("removing all " + queue.size()
         + " messages for: " + server);
  for (Iterator i = queue.iterator(); i.hasNext();) {
      ClientMessage msg = (ClientMessage)i.next();
      if (msg.listener != null) {
    msg.listener.exceptionThrown
        (new IOException(Plugin.tr("Server disconnected")));
      }
  }
View Full Code Here

TOP

Related Classes of xnap.plugin.nap.net.msg.client.ClientMessage

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.