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

com.github.fmjsjx.libnetty.resp.RespIntegerMessage Maven / Gradle / Ivy

There is a newer version: 3.7.1
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy