`
houchangxi
  • 浏览: 63298 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

对于Smack的研究!(二)【原创】

阅读更多

Message Events 研究!

 

Description

In order to receive event notifications for a given message you first have to specify which events are you interested in. Each message that you send has to request its own event notifications. Therefore, every message that you send as part of a chat should request its own event notifications.

Usage

The class MessageEventManager provides an easy way for requesting event notifications. All you have to do is specify the message that requires the event notifications and the events that you are interested in.

Use the static method MessageEventManager.addNotificationsRequests(Message message, boolean offline, boolean delivered, boolean displayed, boolean composing) for requesting event notifications.

Example

Below you can find an example that logs in a user to the server, creates a message, adds the requests for notifications and sends the message.

      // Connect to the server and log in

      conn1 = new XMPPConnection(host);
      conn1.login(server_user1, pass1);
    
      // Create a chat with user2

      Chat chat1 = conn1.createChat(user2);
    
      // Create a message to send

      Message msg = chat1.createMessage();
      msg.setSubject("Any subject you want"
);
      msg.setBody("An interesting body comes here..."
);
      // Add to the message all the notifications requests (offline, delivered, displayed,

      // composing)

      MessageEventManager.addNotificationsRequests(msg, true

, true

, true

, true

);
    
      // Send the message that contains the notifications request

      chat1.sendMessage(msg);

Description

You can receive notification requests for the following events: delivered, displayed, composing and offline. You must listen for these requests and react accordingly.

Usage

The general idea is to create a new DefaultMessageEventRequestListener that will listen to the event notifications requests and react with custom logic. Then you will have to add the listener to the MessageEventManager that works on the desired XMPPConnection .

Note that DefaultMessageEventRequestListener is a default implementation of the MessageEventRequestListener interface. The class DefaultMessageEventRequestListener automatically sends a delivered notification to the sender of the message if the sender has requested to be notified when the message is delivered. If you decide to create a new class that implements the MessageEventRequestListener interface, please remember to send the delivered notification.

  • To create a new MessageEventManager use the MessageEventManager(XMPPConnection) constructor.
  • To create an event notification requests listener create a subclass of DefaultMessageEventRequestListener or create a class that implements the MessageEventRequestListener interface.
  • To add a listener to the messageEventManager use the MessageEventManager's message addMessageEventRequestListener(MessageEventRequestListener) .

Example

Below you can find an example that connects two users to the server. One user will create a message, add the requests for notifications and will send the message to the other user. The other user will add a DefaultMessageEventRequestListener to a MessageEventManager that will listen and react to the event notification requested by the other user.

      // Connect to the server and log in the users

      conn1 = new XMPPConnection(host);
      conn1.login(server_user1, pass1);
      conn2 = new XMPPConnection(host);
      conn2.login(server_user2, pass2);
  
      // User2 creates a MessageEventManager

      MessageEventManager messageEventManager = new MessageEventManager(conn2);
      // User2 adds the listener that will react to the event notifications requests

      messageEventManager.addMessageEventRequestListener(new DefaultMessageEventRequestListener() {
          public void deliveredNotificationRequested(
              String from,
              String packetID,
              MessageEventManager messageEventManager) {
              super.deliveredNotificationRequested(from, packetID, messageEventManager);
              // DefaultMessageEventRequestListener automatically responds that the message was delivered when receives this request

              System.out.println("Delivered Notification Requested (" + from + ", " + packetID + ")"
);
          }

          public void displayedNotificationRequested(
              String from,
              String packetID,
              MessageEventManager messageEventManager) {
              super.displayedNotificationRequested(from, packetID, messageEventManager);
              // Send to the message's sender that the message was displayed

              messageEventManager.sendDisplayedNotification(from, packetID);
          }

          public void composingNotificationRequested(
              String from,
              String packetID,
              MessageEventManager messageEventManager) {
              super.composingNotificationRequested(from, packetID, messageEventManager);
              // Send to the message's sender that the message's receiver is composing a reply

              messageEventManager.sendComposingNotification(from, packetID);
          }

          public void offlineNotificationRequested(
              String from,
              String packetID,
              MessageEventManager messageEventManager) {
              super.offlineNotificationRequested(from, packetID, messageEventManager);
              // The XMPP server should take care of this request. Do nothing.

              System.out.println("Offline Notification Requested (" + from + ", " + packetID + ")"
);
          }
      });

      // User1 creates a chat with user2

      Chat chat1 = conn1.createChat(user2);
    
      // User1 creates a message to send to user2

      Message msg = chat1.createMessage();
      msg.setSubject("Any subject you want"
);
      msg.setBody("An interesting body comes here..."
);
      // User1 adds to the message all the notifications requests (offline, delivered, displayed,

      // composing)

      MessageEventManager.addNotificationsRequests(msg, true

, true

, true

, true

);
    
      // User1 sends the message that contains the notifications request

      chat1.sendMessage(msg);
      Thread.sleep(500);
      // User2 sends to the message's sender that the message's receiver cancelled composing a reply

      messageEventManager.sendCancelledNotification(user1, msg.getPacketID());

Description

Once you have requested for event notifications you will start to receive notifications of events. You can receive notifications of the following events: delivered, displayed, composing, offline and cancelled. You will probably want to react to some or all of these events.

Usage

The general idea is to create a new MessageEventNotificationListener that will listen to the event notifications and react with custom logic. Then you will have to add the listener to the MessageEventManager that works on the desired XMPPConnection .

  • To create a new MessageEventManager use the MessageEventManager(XMPPConnection) constructor.
  • To create an event notifications listener create a class that implements the MessageEventNotificationListener interface.
  • To add a listener to the messageEventManager use the MessageEventManager's message addMessageEventNotificationListener(MessageEventNotificationListener) .

Example

Below you can find an example that logs in a user to the server, adds a MessageEventNotificationListener to a MessageEventManager that will listen and react to the event notifications, creates a message, adds the requests for notifications and sends the message.

      // Connect to the server and log in

      conn1 = new XMPPConnection(host);
      conn1.login(server_user1, pass1);
  
      // Create a MessageEventManager

      MessageEventManager messageEventManager = new MessageEventManager(conn1);
      // Add the listener that will react to the event notifications

      messageEventManager.addMessageEventNotificationListener(new MessageEventNotificationListener() {
          public void deliveredNotification(String from, String packetID) {
              System.out.println("The message has been delivered (" + from + ", " + packetID + ")"
);
          }
    
          public void displayedNotification(String from, String packetID) {
              System.out.println("The message has been displayed (" + from + ", " + packetID + ")"
);
          }
    
          public void composingNotification(String from, String packetID) {
              System.out.println("The message's receiver is composing a reply (" + from + ", " + packetID + ")"
);
          }
    
          public void offlineNotification(String from, String packetID) {
              System.out.println("The message's receiver is offline (" + from + ", " + packetID + ")"
);
          }
    
          public void cancelledNotification(String from, String packetID) {
              System.out.println("The message's receiver cancelled composing a reply (" + from + ", " + packetID + ")"
);
          }
      });

      // Create a chat with user2

      Chat chat1 = conn1.createChat(user2);
    
      // Create a message to send

      Message msg = chat1.createMessage();
      msg.setSubject("Any subject you want"
);
      msg.setBody("An interesting body comes here..."
);
      // Add to the message all the notifications requests (offline, delivered, displayed,

      // composing)

      MessageEventManager.addNotificationsRequests(msg, true

, true

, true

, true

);
    
      // Send the message that contains the notifications request

      chat1.sendMessage(msg);
分享到:
评论

相关推荐

    嵌入式系统中的SMACK应用研究

    嵌入式系统中的SMACK应用研究,较轻量级的强制访问控制

    Smack中文文档,chm格式

    Smack中文文档Smack中文文档Smack中文文档Smack中文文档Smack中文文档Smack中文文档Smack中文文档Smack中文文档Smack中文文档Smack中文文档

    smack 源码

    smack源码

    Smack API手册与文档

    1)smack api,基于smack官方javadoc制作而成,格式chm,语言english; 2)smack documentation,内容包括Overview,Getting Started Guide等等,格式chm,语言为中文(感谢fhqdddddd的奉献,本文档基于...

    Smack中文API文档

    Smack中文API文档

    Smack API中文版

    这个是Smack API的中文版,详细介绍了smack原理,并且有几个小例子在里面

    smack4.3.1

    smack用于android移动端的开发,可以结合openfire使用,进行im通信

    smack4.10含源码

    Smack是一个开源,易于使用的XMPP(jabber)客户端类库。 附件是目前最新版本的smack库,含源码。

    smack api帮助文档

    smack api帮助文档官方提供的帮助工具

    smack 3.2.2

    smack xmpp 3.2.2 for linux

    smack4.1.4 android 测试通过

    最新的 smack4.1.4 android开发demo 可以登录 已验证

    smack3.3.1源代码

    smack3.3.1源码 open fire开源的聊天服务器。客户端的核心xmpp协议的操作。

    Smack帮助文档中文版

    Smack帮助文档中文版:XMPP协议包括一个基本协议和许多可选扩充,像具有代表性的"JEP's".Smack 为核心XMPP协议提供了org.jivesoftware.smack包,为许多协议扩充提供了org.jivesoftware.smackx包.

    smack4.0.3

    smack封装类库,包括smack的所有jar包。可用于二次开发

    smack源码下载(java版)

    smack源码下载,java版下载,smack源码下载

    smack学习笔记

    smack xmpp 即时通讯,使用smack库结合openfire实现即时通讯

    openfire+spark+smack

    Openfire+spark+smack xmpp

    smack包.zip

    基于openfire服务器利用Xmpp协议在Android上实现即时通讯 内含:smack.jar, smackx.jar, smackx-debug.jar, smackx-jingle.jar

    smack4.2.2jar包

    Android端smack4.2.2 IM开发全部jar包包含jxmpp和smack。

    smack_3_3_0

    Android 链接openfire的smack库

Global site tag (gtag.js) - Google Analytics