redis.clients.jedis.gears.RedisGearsCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis_preview Show documentation
Show all versions of jedis_preview Show documentation
Jedis is a blazingly small and sane Redis java client.
The newest version!
package redis.clients.jedis.gears;
import redis.clients.jedis.gears.resps.GearsLibraryInfo;
import java.util.List;
public interface RedisGearsCommands {
default String tFunctionLoad(String libraryCode) {
return tFunctionLoad(libraryCode, TFunctionLoadParams.loadParams());
}
String tFunctionLoad(String libraryCode, TFunctionLoadParams params);
default List tFunctionList() {
return tFunctionList(TFunctionListParams.listParams());
}
List tFunctionList(TFunctionListParams params);
String tFunctionDelete(String libraryName);
Object tFunctionCall(String library, String function, List keys, List args);
Object tFunctionCallAsync(String library, String function, List keys, List args);
}