update transaction api with all the new commands
This commit is contained in:
@@ -2896,9 +2896,9 @@ public class BinaryJedis implements BinaryJedisCommands {
|
||||
* @param timeout
|
||||
* @return the element
|
||||
*/
|
||||
public String brpoplpush(byte[] source, byte[] destination, int timeout) {
|
||||
public byte[] brpoplpush(byte[] source, byte[] destination, int timeout) {
|
||||
client.brpoplpush(source, destination, timeout);
|
||||
return client.getBulkReply();
|
||||
return client.getBinaryBulkReply();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -3,6 +3,8 @@ package redis.clients.jedis;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import redis.clients.jedis.BinaryClient.LIST_POSITION;
|
||||
|
||||
public class BinaryTransaction {
|
||||
protected Client client = null;
|
||||
protected boolean inTransaction = true;
|
||||
@@ -430,4 +432,20 @@ public class BinaryTransaction {
|
||||
inTransaction = false;
|
||||
return client.getStatusCodeReply();
|
||||
}
|
||||
|
||||
public String setbit(byte[] key, int offset, byte[] value) {
|
||||
client.setbit(key, offset, value);
|
||||
return client.getStatusCodeReply();
|
||||
}
|
||||
|
||||
public String getbit(byte[] key, int offset) {
|
||||
client.getbit(key, offset);
|
||||
return client.getStatusCodeReply();
|
||||
}
|
||||
|
||||
public String linsert(final byte[] key, final LIST_POSITION where,
|
||||
final byte[] pivot, final byte[] value) {
|
||||
client.linsert(key, where, pivot, value);
|
||||
return client.getStatusCodeReply();
|
||||
}
|
||||
}
|
||||
@@ -230,4 +230,10 @@ public interface Commands {
|
||||
public void configGet(final String pattern);
|
||||
|
||||
public void configResetStat();
|
||||
|
||||
public void multi();
|
||||
|
||||
public void exec();
|
||||
|
||||
public void discard();
|
||||
}
|
||||
@@ -438,4 +438,16 @@ public class Pipeline implements Commands {
|
||||
public void lastsave() {
|
||||
client.lastsave();
|
||||
}
|
||||
|
||||
public void discard() {
|
||||
client.discard();
|
||||
}
|
||||
|
||||
public void exec() {
|
||||
client.exec();
|
||||
}
|
||||
|
||||
public void multi() {
|
||||
client.multi();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -434,5 +434,17 @@ public abstract class PipelineBlock implements Commands {
|
||||
client.lastsave();
|
||||
}
|
||||
|
||||
public void discard() {
|
||||
client.discard();
|
||||
}
|
||||
|
||||
public void exec() {
|
||||
client.exec();
|
||||
}
|
||||
|
||||
public void multi() {
|
||||
client.multi();
|
||||
}
|
||||
|
||||
public abstract void execute();
|
||||
}
|
||||
|
||||
@@ -2,6 +2,8 @@ package redis.clients.jedis;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import redis.clients.jedis.BinaryClient.LIST_POSITION;
|
||||
|
||||
public class Transaction extends BinaryTransaction {
|
||||
public Transaction() {
|
||||
}
|
||||
@@ -389,4 +391,20 @@ public class Transaction extends BinaryTransaction {
|
||||
client.sort(key, sortingParameters);
|
||||
return client.getStatusCodeReply();
|
||||
}
|
||||
|
||||
public String setbit(String key, long offset, String value) {
|
||||
client.setbit(key, offset, value);
|
||||
return client.getStatusCodeReply();
|
||||
}
|
||||
|
||||
public String getbit(String key, long offset) {
|
||||
client.getbit(key, offset);
|
||||
return client.getStatusCodeReply();
|
||||
}
|
||||
|
||||
public String linsert(final String key, final LIST_POSITION where,
|
||||
final String pivot, final String value) {
|
||||
client.linsert(key, where, pivot, value);
|
||||
return client.getStatusCodeReply();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user