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

io.vertx.redis.Script Maven / Gradle / Ivy

The newest version!
package io.vertx.redis;

import io.vertx.codegen.annotations.VertxGen;
import io.vertx.redis.impl.ScriptImpl;

/**
 * Container for a script and its sha1 hash.
 */
@VertxGen
public interface Script {
  static Script create(String script) {
    return new ScriptImpl(script);
  }
  static Script create(String script, String sha1) {
    return new ScriptImpl(script, sha1);
  }

  String getScript();
  String getSha1();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy