bt.processor.ProcessingContext 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.processor;
import bt.metainfo.Torrent;
import bt.metainfo.TorrentId;
import bt.torrent.TorrentSession;
import java.util.Optional;
public interface ProcessingContext {
Optional getTorrentId();
Optional getTorrent();
Optional getSession();
}