public class PresenceSubscribeHandler extends BasicModule implements ChannelHandler<org.xmpp.packet.Presence>
The handler must properly detect the presence type, update the user's roster, and inform presence subscribers of the session's updated presence status. Presence serves many purposes in Jabber so this handler will likely be the most complex of all handlers in the server.
There are four basic types of presence updates:
| Constructor and Description |
|---|
PresenceSubscribeHandler() |
| Modifier and Type | Method and Description |
|---|---|
void |
initialize(XMPPServer server)
Initializes the basic module.
|
void |
process(org.xmpp.packet.Presence presence)
Process an XMPP packet.
|
destroy, getName, start, stoppublic void process(org.xmpp.packet.Presence presence)
throws PacketException
ChannelHandlerprocess in interface ChannelHandler<org.xmpp.packet.Presence>presence - a packet to process.PacketException - thrown if the packet is malformed (results in the sender's
session being shutdown).public void initialize(XMPPServer server)
BasicModuleInitializes the basic module.
Inheriting classes that choose to override this method MUST call this initialize() method before accessing BasicModule resources.
initialize in interface Moduleinitialize in class BasicModuleserver - the server hosting this module.Copyright © 2003-2008 Jive Software.