Package com.anzsoft.client.XMPP

Examples of com.anzsoft.client.XMPP.XmppPresenceListener


    super(session, userInRoomId, new XmppIdPacketListener(roomId));
    this.roomId = roomId;
    this.sessionRoomId = userInRoomId;
    this.presenceListeners = new RoomPresenceListenerCollection();

    addPresenceListener(new XmppPresenceListener()
    {
      public void onPresenceReceived(final XmppPresence presence)
      {
        String alias = presence.getFromID().getResource();
        String type = presence.getType();
View Full Code Here


    return eventAdapter;
  }
 
  private XmppPresenceListener createPresenceListener()
  {
    presenceListener = new XmppPresenceListener()
    {
      public void onPresenceReceived(XmppPresence presence)
      {
        try
        {
View Full Code Here

TOP

Related Classes of com.anzsoft.client.XMPP.XmppPresenceListener

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.