All Downloads are FREE. Search and download functionalities are using the official Maven repository.

redis.clients.jedis.TransactionBlock Maven / Gradle / Ivy

There is a newer version: 1.13.0
Show newest version
package redis.clients.jedis;

import redis.clients.jedis.exceptions.JedisException;

@Deprecated
/**
 * This class is deprecated due to its error prone
 * and will be removed on next major release
 * @see https://github.com/xetorthio/jedis/pull/498
 */
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy