bt.data.DataDescriptor 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.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();
}