![JAR search and dependency download from the Maven repository](/logo.png)
bt.protocol.Unchoke Maven / Gradle / Ivy
package bt.protocol;
/**
* @since 1.0
*/
public final class Unchoke implements Message {
private Unchoke() {
}
private static final Unchoke instance = new Unchoke();
/**
* @since 1.0
*/
public static Unchoke instance() {
return instance;
}
@Override
public String toString() {
return "[" + this.getClass().getSimpleName() + "]";
}
@Override
public Integer getMessageId() {
return StandardBittorrentProtocol.UNCHOKE_ID;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy