net.i2p.router.transport.udp
Class UDPSender

java.lang.Object
  extended by net.i2p.router.transport.udp.UDPSender

 class UDPSender
extends Object

Lowest level packet sender, pushes anything on its queue ASAP.


Constructor Summary
UDPSender(RouterContext ctx, DatagramSocket socket, String name)
           
 
Method Summary
 void add(UDPPacket packet)
          Put it on the queue.
 void add(UDPPacket packet, int blockTime)
          Deprecated. use add(packet)
 void clear()
          Clear outbound queue, probably in preparation for sending destroy() to everybody.
 void shutdown()
           
 void startup()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UDPSender

public UDPSender(RouterContext ctx,
                 DatagramSocket socket,
                 String name)
Method Detail

startup

public void startup()

shutdown

public void shutdown()

clear

public void clear()
Clear outbound queue, probably in preparation for sending destroy() to everybody.

Since:
0.9.2

add

public void add(UDPPacket packet,
                int blockTime)
Deprecated. use add(packet)

Add the packet to the queue. This may block until there is space available, if requested, otherwise it returns immediately

Parameters:
blockTime - how long to block IGNORED

add

public void add(UDPPacket packet)
Put it on the queue. BLOCKING if queue is full (backs up PacketPusher thread)