added variadic versions of lpush/rpush(x) functions

This commit is contained in:
samhendley
2013-01-10 02:39:48 -05:00
parent 6b5fccdc0a
commit 258ac300fc
12 changed files with 42 additions and 52 deletions

View File

@@ -193,9 +193,9 @@ public interface JedisCommands {
Long linsert(String key, Client.LIST_POSITION where, String pivot,
String value);
Long lpushx(String key, String string);
Long lpushx(String key, String... string);
Long rpushx(String key, String string);
Long rpushx(String key, String... string);
List<String> blpop(String arg);