bt.protocol.IExtendedHandshakeFactory 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.protocol;
import bt.metainfo.TorrentId;
import bt.protocol.extended.ExtendedHandshake;
/**
* @since 1.3
*/
public interface IExtendedHandshakeFactory {
/**
* @since 1.3
*/
ExtendedHandshake getHandshake(TorrentId torrentId);
}