Package org.jivesoftware.openfire
Interface OfflineMessageListener
-
public interface OfflineMessageListenerInterface to listen for offline message events. Use theOfflineMessageStrategy.addListener(OfflineMessageListener)method to register for events.- Author:
- Gaston Dombiak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmessageBounced(org.xmpp.packet.Message message)Notification message indicating that a message was not stored offline but bounced back to the sender.voidmessageStored(org.xmpp.packet.Message message)Notification message indicating that a message was stored offline since the target entity was not online at the moment.
-
-
-
Method Detail
-
messageBounced
void messageBounced(org.xmpp.packet.Message message)
Notification message indicating that a message was not stored offline but bounced back to the sender.- Parameters:
message- the message that was bounced.
-
messageStored
void messageStored(org.xmpp.packet.Message message)
Notification message indicating that a message was stored offline since the target entity was not online at the moment.- Parameters:
message- the message that was stored offline.
-
-