Uses of Interface
net.i2p.util.SimpleTimer.TimedEvent

Packages that use SimpleTimer.TimedEvent
net.i2p.client.streaming Implements a TCP-like (reliable, authenticated, in order) set of sockets for communicating over the IP-like (unreliable, unauthenticated, unordered) I2P messages. 
net.i2p.router   
net.i2p.router.tunnel   
net.i2p.util   
 

Uses of SimpleTimer.TimedEvent in net.i2p.client.streaming
 

Classes in net.i2p.client.streaming that implement SimpleTimer.TimedEvent
(package private)  class Connection.ConEvent
          fired to reschedule event notification
 

Methods in net.i2p.client.streaming that return SimpleTimer.TimedEvent
 SimpleTimer.TimedEvent Connection.getConnectionEvent()
           
 SimpleTimer.TimedEvent PacketLocal.getResendEvent()
           
 

Methods in net.i2p.client.streaming with parameters of type SimpleTimer.TimedEvent
 void PacketLocal.setResendPacketEvent(SimpleTimer.TimedEvent evt)
           
 

Uses of SimpleTimer.TimedEvent in net.i2p.router
 

Classes in net.i2p.router that implement SimpleTimer.TimedEvent
(package private)  class CoalesceStatsEvent
          coalesce the stats framework every minute
 

Uses of SimpleTimer.TimedEvent in net.i2p.router.tunnel
 

Methods in net.i2p.router.tunnel that return SimpleTimer.TimedEvent
(package private)  SimpleTimer.TimedEvent FragmentedMessage.getExpireEvent()
          used in the fragment handler so we can cancel the expire event on success
 

Methods in net.i2p.router.tunnel with parameters of type SimpleTimer.TimedEvent
(package private)  void FragmentedMessage.setExpireEvent(SimpleTimer.TimedEvent evt)
           
 

Uses of SimpleTimer.TimedEvent in net.i2p.util
 

Classes in net.i2p.util that implement SimpleTimer.TimedEvent
 class SocketTimeout
           
 

Methods in net.i2p.util with parameters of type SimpleTimer.TimedEvent
 void SimpleTimer.addEvent(SimpleTimer.TimedEvent event, long timeoutMs)
          Queue up the given event to be fired no sooner than timeoutMs from now.
 void SimpleTimer.addEvent(SimpleTimer.TimedEvent event, long timeoutMs, boolean useEarliestTime)
           
 boolean SimpleTimer.removeEvent(SimpleTimer.TimedEvent evt)
           
 void SimpleTimer.reschedule(SimpleTimer.TimedEvent event, long timeoutMs)