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

org.swisspush.redisques.lua.LuaScript Maven / Gradle / Ivy

There is a newer version: 2.4.3
Show newest version
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