Enum Class ScriptFlags

java.lang.Object
java.lang.Enum<ScriptFlags>
org.infinispan.server.resp.scripting.ScriptFlags
All Implemented Interfaces:
Serializable, Comparable<ScriptFlags>, Constable

public enum ScriptFlags extends Enum<ScriptFlags>
  • Enum Constant Details

    • NO_WRITES

      public static final ScriptFlags NO_WRITES
      this flag indicates that the script only reads data but never writes.
    • ALLOW_OOM

      public static final ScriptFlags ALLOW_OOM
      use this flag to allow a script to execute when the server is out of memory (OOM).
    • ALLOW_STALE

      public static final ScriptFlags ALLOW_STALE
      allow running the script on a stale replica.
    • NO_CLUSTER

      public static final ScriptFlags NO_CLUSTER
      return an error if the script is executed in clustered mode.
    • EVAL_COMPAT_MODE

      public static final ScriptFlags EVAL_COMPAT_MODE
      EVAL Script backwards compatible behavior, no shebang provided
    • ALLOW_CROSS_SLOT_KEYS

      public static final ScriptFlags ALLOW_CROSS_SLOT_KEYS
      allow the script to access keys from multiple slots.
  • Method Details

    • values

      public static ScriptFlags[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ScriptFlags valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • isSet

      public boolean isSet(long mask)
    • value

      public long value()