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

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

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

import java.util.List;

public interface BinaryScriptingCommandsPipeline {

  Response eval(byte[] script, byte[] keyCount, byte[]... params);

  Response eval(byte[] script, int keyCount, byte[]... params);

  Response eval(byte[] script, List keys, List args);

  Response eval(byte[] script);

  Response evalsha(byte[] script);

  Response evalsha(byte[] sha1, List keys, List args);

  Response evalsha(byte[] sha1, int keyCount, byte[]... params);
}