bt.module.BtModuleProvider 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.module;
import com.google.inject.Module;
/**
* Provides the support for auto-loading of modules.
* Module providers are specified in META-INF/services/bt.module.BtModuleProvider file.
*
* @see java.util.ServiceLoader
* @since 1.1
*/
public interface BtModuleProvider {
/**
* @since 1.1
*/
Module module();
}