Uses of Interface
net.i2p.router.TunnelInfo

Packages that use TunnelInfo
net.i2p.router   
net.i2p.router.tunnel   
net.i2p.router.tunnel.pool   
 

Uses of TunnelInfo in net.i2p.router
 

Methods in net.i2p.router that return TunnelInfo
 TunnelInfo TunnelManagerFacade.getTunnelInfo(TunnelId id)
          Retrieve the information related to a particular tunnel
 TunnelInfo TunnelManagerFacade.selectInboundTunnel()
          pick an inbound tunnel not bound to a particular destination
 TunnelInfo TunnelManagerFacade.selectInboundTunnel(Hash destination)
          pick an inbound tunnel bound to the given destination
 TunnelInfo TunnelManagerFacade.selectOutboundTunnel()
          pick an outbound tunnel not bound to a particular destination
 TunnelInfo TunnelManagerFacade.selectOutboundTunnel(Hash destination)
          pick an outbound tunnel bound to the given destination
 

Methods in net.i2p.router with parameters of type TunnelInfo
 void MessageHistory.tunnelJoined(java.lang.String state, TunnelInfo tunnel)
          The local router has joined the given tunnel operating in the given state.
 void MessageHistory.tunnelValid(TunnelInfo tunnel, long timeToTest)
          Note that we have reason to believe that the given tunnel is valid, since we could do something through it in the given amount of time
 

Uses of TunnelInfo in net.i2p.router.tunnel
 

Classes in net.i2p.router.tunnel that implement TunnelInfo
 class TunnelCreatorConfig
          Coordinate the info that the tunnel creator keeps track of, including what peers are in the tunnel and what their configuration is
 

Uses of TunnelInfo in net.i2p.router.tunnel.pool
 

Classes in net.i2p.router.tunnel.pool that implement TunnelInfo
 class PooledTunnelCreatorConfig
           
 

Methods in net.i2p.router.tunnel.pool that return TunnelInfo
 TunnelInfo TunnelPoolManager.selectInboundTunnel()
          pick an inbound tunnel not bound to a particular destination
 TunnelInfo TunnelPoolManager.selectInboundTunnel(Hash destination)
          pick an inbound tunnel bound to the given destination
 TunnelInfo TunnelPoolManager.selectOutboundTunnel()
          pick an outbound tunnel not bound to a particular destination
 TunnelInfo TunnelPoolManager.selectOutboundTunnel(Hash destination)
          pick an outbound tunnel bound to the given destination
 TunnelInfo TunnelPoolManager.getTunnelInfo(TunnelId id)
           
 TunnelInfo TunnelPool.selectTunnel()
          Pull a random tunnel out of the pool.
 TunnelInfo TunnelPool.getTunnel(TunnelId gatewayId)
           
 

Methods in net.i2p.router.tunnel.pool with parameters of type TunnelInfo
 void TunnelPool.addTunnel(TunnelInfo info)
           
 void TunnelPool.removeTunnel(TunnelInfo info)