Openfire 3.9.3 Javadoc

org.jivesoftware.openfire.multiplex
Class MultiplexerPacketDeliverer

java.lang.Object
  extended by org.jivesoftware.openfire.multiplex.MultiplexerPacketDeliverer
All Implemented Interfaces:
PacketDeliverer

public class MultiplexerPacketDeliverer
extends Object
implements PacketDeliverer

Fallback method used by SocketConnection when connected to a connection manager. The fallback method will be used when a SocketConnection fails to send a Packet (probably because the socket was closed).

The first attempt will be to send the packet using another connection to the same connection manager (since managers may have a pool of connections to the server). And if that fails then instances of Message may be stored offline for later retrieval. Since packets may be wrapped by special IQ packets (read the Connection Manager JEP for more information) we need to unwrap the packet and store the wrapped packet offline.

Author:
Gaston Dombiak

Constructor Summary
MultiplexerPacketDeliverer()
           
 
Method Summary
 void deliver(org.xmpp.packet.Packet packet)
          Delivers the given packet based on packet recipient and sender.
 void setConnectionManagerDomain(String connectionManagerDomain)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MultiplexerPacketDeliverer

public MultiplexerPacketDeliverer()
Method Detail

setConnectionManagerDomain

public void setConnectionManagerDomain(String connectionManagerDomain)

deliver

public void deliver(org.xmpp.packet.Packet packet)
             throws UnauthorizedException,
                    PacketException
Description copied from interface: PacketDeliverer
Delivers the given packet based on packet recipient and sender. The deliverer defers actual routing decisions to other classes.

Warning

Be careful to enforce concurrency DbC of concurrent by synchronizing any accesses to class resources.

Specified by:
deliver in interface PacketDeliverer
Parameters:
packet - the packet to route
Throws:
PacketException - if the packet is null or the packet could not be routed.
UnauthorizedException

Openfire 3.9.3 Javadoc

Copyright © 2003-2008 Jive Software.