Package com.anzsoft.client.XMPP.log

Examples of com.anzsoft.client.XMPP.log.LoggerPacketListener


    public static void log(final String text) {
  logger.log(text);
    }

    public static void debug(final XmppConnection connection, final LoggerOuput logger) {
  connection.addPacketListener(new LoggerPacketListener(logger));
  connection.addEventListener(new LoggerEventListener(logger));
  connection.addMessageListener(new LoggerMessageListener(logger));
  connection.addInfoQueryListener(new LoggerInfoQueryListener(logger));
  connection.addPreseceListener(new LoggerPresenceListener(logger));
    }
View Full Code Here

TOP

Related Classes of com.anzsoft.client.XMPP.log.LoggerPacketListener

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.