Enum Class ThrottlingMode

java.lang.Object
java.lang.Enum<ThrottlingMode>
org.apache.camel.model.ThrottlingMode
All Implemented Interfaces:
Serializable, Comparable<ThrottlingMode>, Constable

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

    • TotalRequests

      public static final ThrottlingMode TotalRequests
      Uses a throttling mode that considers the total number of requests over defined period of time
    • ConcurrentRequests

      public static final ThrottlingMode ConcurrentRequests
      Uses a throttling mode that uses a leaky-bucket algorithm to limit the outflow based on a maximum number of concurrent requests
  • Method Details

    • values

      public static ThrottlingMode[] 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 ThrottlingMode 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
    • toMode

      public static ThrottlingMode toMode(String mode)