19 lines
386 B
Java
19 lines
386 B
Java
package redis.clients.jedis;
|
|
|
|
import redis.clients.jedis.exceptions.JedisException;
|
|
|
|
public abstract class TransactionBlock extends Transaction {
|
|
public TransactionBlock(Client client) {
|
|
super(client);
|
|
}
|
|
|
|
public TransactionBlock() {
|
|
}
|
|
|
|
public abstract void execute() throws JedisException;
|
|
|
|
public void setClient(Client client) {
|
|
this.client = client;
|
|
}
|
|
}
|