bt.protocol.EncodingContext 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.net.Peer;
public class EncodingContext {
private final Peer peer;
public EncodingContext(Peer peer) {
this.peer = peer;
}
public Peer getPeer() {
return peer;
}
}