Record Class HttpWorker.ExecutionStats

java.lang.Object
java.lang.Record
org.aksw.iguana.cc.worker.HttpWorker.ExecutionStats
Enclosing class:
HttpWorker

public static record HttpWorker.ExecutionStats(int queryID, Instant startTime, Duration duration, Optional<Integer> httpStatusCode, OptionalLong contentLength, OptionalLong responseBodyHash, Optional<Exception> error) extends Record
  • Constructor Details

    • ExecutionStats

      public ExecutionStats(int queryID, Instant startTime, Duration duration, Optional<Integer> httpStatusCode, OptionalLong contentLength, OptionalLong responseBodyHash, Optional<Exception> error)
      Creates an instance of a ExecutionStats record class.
      Parameters:
      queryID - the value for the queryID record component
      startTime - the value for the startTime record component
      duration - the value for the duration record component
      httpStatusCode - the value for the httpStatusCode record component
      contentLength - the value for the contentLength record component
      responseBodyHash - the value for the responseBodyHash record component
      error - the value for the error record component
  • Method Details

    • endState

    • completed

      public boolean completed()
    • successful

      public boolean successful()
    • timeout

      public boolean timeout()
    • httpError

      public boolean httpError()
    • miscellaneousException

      public boolean miscellaneousException()
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • queryID

      public int queryID()
      Returns the value of the queryID record component.
      Returns:
      the value of the queryID record component
    • startTime

      public Instant startTime()
      Returns the value of the startTime record component.
      Returns:
      the value of the startTime record component
    • duration

      public Duration duration()
      Returns the value of the duration record component.
      Returns:
      the value of the duration record component
    • httpStatusCode

      public Optional<Integer> httpStatusCode()
      Returns the value of the httpStatusCode record component.
      Returns:
      the value of the httpStatusCode record component
    • contentLength

      public OptionalLong contentLength()
      Returns the value of the contentLength record component.
      Returns:
      the value of the contentLength record component
    • responseBodyHash

      public OptionalLong responseBodyHash()
      Returns the value of the responseBodyHash record component.
      Returns:
      the value of the responseBodyHash record component
    • error

      public Optional<Exception> error()
      Returns the value of the error record component.
      Returns:
      the value of the error record component