bt.torrent.compiler.ProducerInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bt-core Show documentation
Show all versions of bt-core Show documentation
BitTorrent Client Library (Core)
package bt.torrent.compiler;
import java.lang.invoke.MethodHandle;
class ProducerInfo {
private MethodHandle handle;
public MethodHandle getHandle() {
return handle;
}
public void setHandle(MethodHandle handle) {
this.handle = handle;
}
}