Examples of onPresence()


Examples of com.calclab.emite.core.client.xmpp.session.Session.onPresence()

  });

  /*
   * We show (log) every incoming presence stanzas
   */
  session.onPresence(new Listener<Presence>() {
      public void onEvent(final Presence presence) {
    GWT.log("Presence received from " + presence.getFrom() + ": " + presence.toString(), null);
      }
  });

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.