Enum Class RedisFlushMode

java.lang.Object
java.lang.Enum<RedisFlushMode>
org.springframework.session.data.redis.RedisFlushMode
All Implemented Interfaces:
Serializable, Comparable<RedisFlushMode>, Constable

@Deprecated public enum RedisFlushMode extends Enum<RedisFlushMode>
Deprecated.
since 2.2.0 in favor of FlushMode
Specifies when to write to the backing Redis instance.
Since:
1.1
  • Enum Constant Details

    • ON_SAVE

      public static final RedisFlushMode ON_SAVE
      Deprecated.
      Only writes to Redis when SessionRepository.save(org.springframework.session.Session) is invoked. In a web environment this is typically done as soon as the HTTP response is committed.
    • IMMEDIATE

      public static final RedisFlushMode IMMEDIATE
      Deprecated.
      Writes to Redis as soon as possible. For example SessionRepository.createSession() will write the session to Redis. Another example is that setting an attribute on the session will also write to Redis immediately.
  • Method Details

    • values

      public static RedisFlushMode[] values()
      Deprecated.
      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 RedisFlushMode valueOf(String name)
      Deprecated.
      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
    • getFlushMode

      public org.springframework.session.FlushMode getFlushMode()
      Deprecated.