bt.runtime.Contribution 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.runtime;
import com.google.inject.Module;
import java.util.function.Consumer;
class Contribution {
private Class moduleType;
private Consumer contributor;
Contribution(Class moduleType, Consumer contributor) {
this.moduleType = moduleType;
this.contributor = contributor;
}
public Class getModuleType() {
return moduleType;
}
public void apply(T module) {
contributor.accept(module);
}
}