![JAR search and dependency download from the Maven repository](/logo.png)
bt.data.DataDescriptor Maven / Gradle / Ivy
package bt.data;
import java.io.Closeable;
import java.util.List;
/**
* Torrent's data descriptor.
* Provides access to individual chunks and status of torrent's data.
*
* @since 1.0
*/
public interface DataDescriptor extends Closeable {
/**
* @return List of chunks in the same order as they appear in torrent's metainfo.
* Hence, index of a chunk in this list can be used
* as the index of the corresponding piece in data exchange between peers.
* @since 1.0
*/
List getChunkDescriptors();
/**
* @return Status of torrent's data.
* @since 1.0
*/
Bitfield getBitfield();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy