forked from I2P_Developers/i2p.i2p
which is a rewrite of the netdb kad - Drop now-unused SHA1Comparator - Efficiency tweak to NodeInfoComparator
11 lines
215 B
Java
11 lines
215 B
Java
package net.i2p.kademlia;
|
|
|
|
import net.i2p.data.SimpleDataStructure;
|
|
|
|
/**
|
|
* Visit kbuckets, gathering matches
|
|
*/
|
|
public interface SelectionCollector<T extends SimpleDataStructure> {
|
|
public void add(T entry);
|
|
}
|