com.redislabs.redisgraph.Command Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jredisgraph Show documentation
Show all versions of jredisgraph Show documentation
Official client for Redis-Graph
package com.redislabs.redisgraph;
import redis.clients.jedis.util.SafeEncoder;
import redis.clients.jedis.commands.ProtocolCommand;
/**
*
*
*
*/
public enum Command implements ProtocolCommand {
QUERY("graph.QUERY"),
DELETE("graph.DELETE");
private final byte[] raw;
Command(String alt) {
raw = SafeEncoder.encode(alt);
}
public byte[] getRaw() {
return raw;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy