All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bt.protocol.KeepAlive Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package bt.protocol;

/**
 * @since 1.0
 */
public final class KeepAlive implements Message {

    private KeepAlive() {
    }

    private static final KeepAlive instance = new KeepAlive();

    /**
     * @since 1.0
     */
    public static KeepAlive instance() {
        return instance;
    }

    @Override
    public String toString() {
        return "[" + this.getClass().getSimpleName() + "]";
    }

    @Override
    public Integer getMessageId() {
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy