com.github.fmjsjx.libnetty.resp.RespIntegerMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libnetty-resp Show documentation
Show all versions of libnetty-resp Show documentation
A set of some useful libraries based on netty4.1.x.
package com.github.fmjsjx.libnetty.resp;
/**
* An interface defines a RESP Integer message.
*
* @since 1.0
*
* @author MJ Fang
*/
public interface RespIntegerMessage extends RespMessage {
@Override
default RespMessageType type() {
return RespMessageType.INTEGER;
}
/**
* Returns the value.
*
* @return the value
*/
long value();
}