Uses of Interface
net.i2p.crypto.TagSetHandle

Packages that use TagSetHandle
net.i2p.crypto   
net.i2p.router.networkdb.kademlia   
 

Uses of TagSetHandle in net.i2p.crypto
 

Methods in net.i2p.crypto that return TagSetHandle
 TagSetHandle SessionKeyManager.tagsDelivered(PublicKey target, SessionKey key, java.util.Set<SessionTag> sessionTags)
          Take note of the fact that the given sessionTags associated with the key for encryption to the target have definitely been received at the target (aka call this method after receiving an ack to a message delivering them)
 TagSetHandle TransientSessionKeyManager.tagsDelivered(PublicKey target, SessionKey key, java.util.Set<SessionTag> sessionTags)
          Take note of the fact that the given sessionTags associated with the key for encryption to the target have been sent.
 

Methods in net.i2p.crypto with parameters of type TagSetHandle
 void SessionKeyManager.failTags(PublicKey target, SessionKey key, TagSetHandle ts)
           
 void TransientSessionKeyManager.failTags(PublicKey target, SessionKey key, TagSetHandle ts)
          Mark these tags as invalid, since the peer has failed to ack them in time.
 void SessionKeyManager.tagsAcked(PublicKey target, SessionKey key, TagSetHandle ts)
           
 void TransientSessionKeyManager.tagsAcked(PublicKey target, SessionKey key, TagSetHandle ts)
          Mark these tags as acked, start to use them (if we haven't already)
 

Uses of TagSetHandle in net.i2p.router.networkdb.kademlia
 

Constructors in net.i2p.router.networkdb.kademlia with parameters of type TagSetHandle
MessageWrapper.WrappedMessage(GarlicMessage msg, SessionKeyManager skm, PublicKey sentTo, SessionKey sentKey, TagSetHandle tsh)