Uses of Interface
net.i2p.router.tunnel.TunnelGateway.Receiver

Packages that use TunnelGateway.Receiver
net.i2p.router.tunnel   
 

Uses of TunnelGateway.Receiver in net.i2p.router.tunnel
 

Classes in net.i2p.router.tunnel that implement TunnelGateway.Receiver
 class InboundGatewayReceiver
           
(package private)  class OutboundReceiver
          Receive the outbound message after it has been preprocessed and encrypted, then forward it on to the first hop in the tunnel.
 

Methods in net.i2p.router.tunnel with parameters of type TunnelGateway.Receiver
 void TunnelGateway.Sender.sendPreprocessed(byte[] preprocessed, TunnelGateway.Receiver receiver)
          Take the preprocessed data containing zero or more fragments, encrypt it, and pass it on to the receiver
 boolean TunnelGateway.QueuePreprocessor.preprocessQueue(java.util.List pending, TunnelGateway.Sender sender, TunnelGateway.Receiver receiver)
           
 boolean TrivialPreprocessor.preprocessQueue(java.util.List pending, TunnelGateway.Sender sender, TunnelGateway.Receiver rec)
           
 void OutboundSender.sendPreprocessed(byte[] preprocessed, TunnelGateway.Receiver receiver)
           
 void InboundSender.sendPreprocessed(byte[] preprocessed, TunnelGateway.Receiver receiver)
           
 

Constructors in net.i2p.router.tunnel with parameters of type TunnelGateway.Receiver
TunnelGateway(I2PAppContext context, TunnelGateway.QueuePreprocessor preprocessor, TunnelGateway.Sender sender, TunnelGateway.Receiver receiver)