![JAR search and dependency download from the Maven repository](/logo.png)
bt.bencoding.model.BEObjectModelLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bt-bencoding Show documentation
Show all versions of bt-bencoding Show documentation
Library for parsing, encoding and validating bencoded documents in Java
package bt.bencoding.model;
import java.io.InputStream;
/**
* Loads model definitions.
*
* @since 1.0
*/
public interface BEObjectModelLoader {
/**
* Load model definition from a given source.
* @param source Source. Must be closed by the caller.
* @return Model definition
* @since 1.0
*/
BEObjectModel load(InputStream source);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy