refactored pipelinebase so it is usable to implement SharedJedisPipeline as well.

This commit is contained in:
samhendley
2013-01-10 02:29:39 -05:00
parent c8ddd237c3
commit 6b5fccdc0a
6 changed files with 597 additions and 1839 deletions

View File

@@ -13,6 +13,6 @@ public abstract class TransactionBlock extends Transaction {
public abstract void execute() throws JedisException;
public void setClient(Client client) {
this.client = client;
this.client = client;
}
}