forked from I2P_Developers/i2p.i2p
12 lines
231 B
Java
12 lines
231 B
Java
package net.i2p.kademlia;
|
|
|
|
import net.i2p.data.SimpleDataStructure;
|
|
|
|
/**
|
|
* Visit kbuckets, gathering matches
|
|
* @since 0.9.2
|
|
*/
|
|
public interface SelectionCollector<T extends SimpleDataStructure> {
|
|
public void add(T entry);
|
|
}
|