Package redis.clients.jedis.commands
Interface BinaryScriptingCommandsPipeline
-
- All Known Implementing Classes:
MultiKeyPipelineBase,Pipeline,Transaction
public interface BinaryScriptingCommandsPipeline
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Response<Object>eval(byte[] script)Response<Object>eval(byte[] script, byte[] keyCount, byte[]... params)Response<Object>eval(byte[] script, int keyCount, byte[]... params)Response<Object>eval(byte[] script, List<byte[]> keys, List<byte[]> args)Response<Object>evalsha(byte[] sha1)Response<Object>evalsha(byte[] sha1, int keyCount, byte[]... params)Response<Object>evalsha(byte[] sha1, List<byte[]> keys, List<byte[]> args)
-