Enum RedisRole

java.lang.Object
java.lang.Enum<RedisRole>
io.vertx.redis.client.RedisRole
All Implemented Interfaces:
Serializable, Comparable<RedisRole>

public enum RedisRole extends Enum<RedisRole>
The client role; that is, to which kind of node should the connection be established.

This is only meaningful in case of a sentinel Redis client.

  • Enum Constant Details

    • MASTER

      public static final RedisRole MASTER
      Use a MASTER node connection.
    • REPLICA

      public static final RedisRole REPLICA
      Use a REPLICA node connection.
    • SENTINEL

      public static final RedisRole SENTINEL
      Use a SENTINEL node connection.
  • Method Details

    • values

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

      public static RedisRole valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null