SENTINEL commands

This commit is contained in:
Maciej Lopacinski
2012-11-18 19:58:13 +01:00
parent 2058231a61
commit 69b5291f80
5 changed files with 212 additions and 1 deletions

View File

@@ -807,4 +807,9 @@ public class BinaryClient extends Connection {
public void objectEncoding(byte[] key) {
sendCommand(OBJECT, ENCODING.raw, key);
}
public void sentinel(final byte[]... args) {
sendCommand(SENTINEL, args);
}
}