graphServer
Interface UDPListener

All Known Implementing Classes:
P2PGraph

public interface UDPListener

Represents an interface for a class which will be receiving messages over a UDP Connection.

Version:
Date: 18/07/2011
Author:
Matthew Smith

Method Summary
 void receiveMessage(java.net.DatagramPacket receivePacket)
          Receive and handle a packet from the UDP Connection.
 

Method Detail

receiveMessage

void receiveMessage(java.net.DatagramPacket receivePacket)
Receive and handle a packet from the UDP Connection.

Parameters:
receivePacket - The Packet received through the UDP connection.