Class Backoff


  • @Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
               date="2023-10-02T12:25:58.319138+03:00[Europe/Athens]")
    public class Backoff
    extends java.lang.Object
    Backoff is a backoff strategy to use within retryStrategy
    • Field Detail

      • SERIALIZED_NAME_DURATION

        public static final java.lang.String SERIALIZED_NAME_DURATION
        See Also:
        Constant Field Values
      • SERIALIZED_NAME_FACTOR

        public static final java.lang.String SERIALIZED_NAME_FACTOR
        See Also:
        Constant Field Values
      • SERIALIZED_NAME_MAX_DURATION

        public static final java.lang.String SERIALIZED_NAME_MAX_DURATION
        See Also:
        Constant Field Values
      • openapiFields

        public static java.util.HashSet<java.lang.String> openapiFields
      • openapiRequiredFields

        public static java.util.HashSet<java.lang.String> openapiRequiredFields
    • Constructor Detail

      • Backoff

        public Backoff()
    • Method Detail

      • duration

        public Backoff duration​(java.lang.String duration)
      • getDuration

        @Nullable
        public java.lang.String getDuration()
        Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. \"2m\", \"1h\")
        Returns:
        duration
      • setDuration

        public void setDuration​(java.lang.String duration)
      • factor

        public Backoff factor​(java.lang.Integer factor)
      • getFactor

        @Nullable
        public java.lang.Integer getFactor()
        Factor is a factor to multiply the base duration after each failed retry
        Returns:
        factor
      • setFactor

        public void setFactor​(java.lang.Integer factor)
      • maxDuration

        public Backoff maxDuration​(java.lang.String maxDuration)
      • getMaxDuration

        @Nullable
        public java.lang.String getMaxDuration()
        MaxDuration is the maximum amount of time allowed for the backoff strategy
        Returns:
        maxDuration
      • setMaxDuration

        public void setMaxDuration​(java.lang.String maxDuration)
      • putAdditionalProperty

        public Backoff putAdditionalProperty​(java.lang.String key,
                                             java.lang.Object value)
        Set the additional (undeclared) property with the specified name and value. If the property does not already exist, create it otherwise replace it.
      • getAdditionalProperties

        public java.util.Map<java.lang.String,​java.lang.Object> getAdditionalProperties()
        Return the additional (undeclared) property.
      • getAdditionalProperty

        public java.lang.Object getAdditionalProperty​(java.lang.String key)
        Return the additional (undeclared) property with the specified name.
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • validateJsonObject

        public static void validateJsonObject​(com.google.gson.JsonObject jsonObj)
                                       throws java.io.IOException
        Validates the JSON Object and throws an exception if issues found
        Parameters:
        jsonObj - JSON Object
        Throws:
        java.io.IOException - if the JSON Object is invalid with respect to Backoff
      • fromJson

        public static Backoff fromJson​(java.lang.String jsonString)
                                throws java.io.IOException
        Create an instance of Backoff given an JSON string
        Parameters:
        jsonString - JSON string
        Returns:
        An instance of Backoff
        Throws:
        java.io.IOException - if the JSON string is invalid with respect to Backoff
      • toJson

        public java.lang.String toJson()
        Convert an instance of Backoff to an JSON string
        Returns:
        JSON string