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

com.godmao.mqbroker.message.HeartbeatMessage Maven / Gradle / Ivy

There is a newer version: 0.2.7.RELEASE
Show newest version
package com.godmao.mqbroker.message;

public class HeartbeatMessage {
    public static final byte cmd = 0;

    private HeartbeatMessage() {

    }

    public static class Request {
        public final long version;

        public Request(long version) {
            this.version = version;
        }

        public byte getCmd() {
            return cmd;
        }

        public long getVersion() {
            return version;
        }
    }

    public static class Response {
        public byte getCmd() {
            return cmd;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy