All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bt.data.DataDescriptor Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy