Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.net.DatagramPacket

Uses of DatagramPacket in java.net
 

Methods in java.net with parameters of type DatagramPacket
 void ZDatagramSocketImpl._receive(DatagramPacket p)
          This is a wrapper to the real receiving method.
 void ZDatagramSocketImpl.receive(DatagramPacket p)
          This is an overloaded method used to receive packets.
 void ZDatagramSocketImpl._send(DatagramPacket p)
          This is a wrapper to the real sending method.
 void ZDatagramSocketImpl.send(DatagramPacket p)
          This is an overloaded method used to send packets.
protected  void DConnector.addPacket(DatagramPacket packet)
          This method clones a received packet and adds it to the packet queue so it can be later retrieved.
 void DConnector.sendAck(ZObject received, DatagramPacket packet)
          This method is responsible for send ack when a packet is received.
 void DConnector.getPacket(DatagramPacket p)
          This method remove a packet from the queue and copy data into the passed datagram.
 void DConnector.send(DatagramPacket p)
          This method is invoked by the ZDatagramSocketImpl#send 55 method to perform the real data sending.
 void DConnector.decompress(DatagramPacket p)
          This method is responsible for data decompression.
protected  int PlainDatagramSocketImpl.peekData(DatagramPacket dp)
           
protected  void PlainDatagramSocketImpl.send(DatagramPacket p)
           
protected  void PlainDatagramSocketImpl.receive(DatagramPacket p)
           
 void MulticastSocket.send(DatagramPacket packet, byte ttl)
          Deprecated.  
protected abstract  int DatagramSocketImpl.peekData(DatagramPacket p)
          Takes a peek at the next packet received.
protected abstract  void DatagramSocketImpl.send(DatagramPacket p)
          Transmits the specified packet of data to the network.
protected abstract  void DatagramSocketImpl.receive(DatagramPacket p)
          Receives a packet of data from the network Will block until a packet arrives.
 void DatagramSocket.receive(DatagramPacket p)
          Reads a datagram packet from the socket.
 void DatagramSocket.send(DatagramPacket p)
          Sends the specified packet.
 

Constructors in java.net with parameters of type DatagramPacket
ZObject(DatagramPacket packet)
          Constructor used to build an object by deserializing data coming from the buffer contained in the passed datagram.