
org.yatech.jedis.utils.lua.LuaKeyArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis-utils Show documentation
Show all versions of jedis-utils Show documentation
'Utilities for common tasks using Jedis (Java Redis client)'
The newest version!
package org.yatech.jedis.utils.lua;
/**
* An argument placeholder for a key value
*
* Created by Yinon Avraham on 11/09/2015.
*/
public class LuaKeyArgument extends LuaArgument {
LuaKeyArgument(String name, String defaultKey) {
super(name, defaultKey);
}
LuaKeyArgument(String name) {
super(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy