Added pipeline support

This commit is contained in:
Jonathan Leibiusky
2010-08-05 21:45:21 -03:00
parent 01da80627d
commit 5679597495
7 changed files with 121 additions and 36 deletions

View File

@@ -0,0 +1,11 @@
package redis.clients.jedis;
public abstract class JedisPipeline {
protected Client client;
public void setClient(Client client) {
this.client = client;
}
public abstract void execute();
}