de.knup.jedi.jayshare
Class Main.JTestPacketListener

java.lang.Object
  |
  +--de.knup.jedi.jayshare.Main.JTestPacketListener
Enclosing class:
Main

static class Main.JTestPacketListener
extends java.lang.Object
implements PacketListener


Constructor Summary
(package private) Main.JTestPacketListener()
           
 
Method Summary
 void receivedPacket(PacketEvent pe)
          called when a packet is received and processed.
 void sendFailed(PacketEvent pe)
          called if a packet is not successfully sent (for instance, if the connection dies while the packet is queued, or a packet is sent while disconnected).
 void sentPacket(PacketEvent pe)
          called whenever a local client sends a packet, after the sending is successful
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

Main.JTestPacketListener

Main.JTestPacketListener()
Method Detail

receivedPacket

public void receivedPacket(PacketEvent pe)
Description copied from interface: PacketListener
called when a packet is received and processed.
Specified by:
receivedPacket in interface PacketListener
Tags copied from interface: PacketListener
Parameters:
pe - PacketEvent that has just been received.

sentPacket

public void sentPacket(PacketEvent pe)
Description copied from interface: PacketListener
called whenever a local client sends a packet, after the sending is successful
Specified by:
sentPacket in interface PacketListener
Tags copied from interface: PacketListener
Parameters:
pe - PacketEvent that has just been sent

sendFailed

public void sendFailed(PacketEvent pe)
Description copied from interface: PacketListener
called if a packet is not successfully sent (for instance, if the connection dies while the packet is queued, or a packet is sent while disconnected).
Specified by:
sendFailed in interface PacketListener
Tags copied from interface: PacketListener
Parameters:
pe - PacketEvent for the failed send