![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.server.resp.serialization.RespConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-server-resp Show documentation
Show all versions of infinispan-server-resp Show documentation
Infinispan Resp Protocol Server
package org.infinispan.server.resp.serialization;
import java.nio.charset.StandardCharsets;
public interface RespConstants {
byte NULL = '_';
byte SIMPLE_STRING = '+';
byte BULK_STRING = '$';
byte ARRAY = '*';
byte NUMERIC = ':';
byte BOOLEAN = '#';
byte DOUBLE = ',';
byte BIG_NUMBER = '(';
byte MAP = '%';
byte SET = '~';
String CRLF_STRING = "\r\n";
byte[] CRLF = CRLF_STRING.getBytes(StandardCharsets.US_ASCII);
String OK = "OK";
String QUEUED_REPLY = "QUEUED";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy