Enum TimeoutMode

java.lang.Object
java.lang.Enum<TimeoutMode>
com.linecorp.armeria.common.util.TimeoutMode
All Implemented Interfaces:
Serializable, Comparable<TimeoutMode>, java.lang.constant.Constable

public enum TimeoutMode
extends Enum<TimeoutMode>
The timeout mode.
  • Enum Constant Details

    • SET_FROM_NOW

      public static final TimeoutMode SET_FROM_NOW
      Schedules a timeout from the current time.
    • SET_FROM_START

      public static final TimeoutMode SET_FROM_START
      Schedules a timeout from the start time of the Request.
    • EXTEND

      public static final TimeoutMode EXTEND
      Extends the previously scheduled timeout.
  • Method Details

    • values

      public static TimeoutMode[] 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 TimeoutMode 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