
org.swisspush.redisques.lua.LuaScript Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-redisques Show documentation
Show all versions of vertx-redisques Show documentation
A highly scalable redis-persistent queuing system for vertx
package org.swisspush.redisques.lua;
public enum LuaScript {
CHECK("redisques_check.lua");
private String file;
LuaScript(String file) {
this.file = file;
}
public String getFile() {
return file;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy