bt.protocol.NotInterested 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;
/**
* @since 1.0
*/
public final class NotInterested implements Message {
private NotInterested() {
}
private static final NotInterested instance = new NotInterested();
/**
* @since 1.0
*/
public static NotInterested instance() {
return instance;
}
@Override
public String toString() {
return "[" + this.getClass().getSimpleName() + "]";
}
@Override
public Integer getMessageId() {
return StandardBittorrentProtocol.NOT_INTERESTED_ID;
}
}