Record Class ExportStats.ProxyHistorySnapshotStats

java.lang.Object
java.lang.Record
ai.attackframework.tools.burp.utils.ExportStats.ProxyHistorySnapshotStats
Enclosing class:
ExportStats

public static record ExportStats.ProxyHistorySnapshotStats(int attempted, int success, long durationMs, int finalChunkTarget, long recordedAtMs) extends Record
Immutable proxy-history snapshot performance summary.
  • Constructor Summary

    Constructors
    Constructor
    Description
    ProxyHistorySnapshotStats(int attempted, int success, long durationMs, int finalChunkTarget, long recordedAtMs)
    Creates an instance of a ProxyHistorySnapshotStats record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the value of the attempted record component.
    double
    Returns effective throughput in docs/sec for this snapshot, or 0 when unavailable.
    long
    Returns the value of the durationMs record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    int
    Returns the value of the finalChunkTarget record component.
    final int
    Returns a hash code value for this object.
    long
    Returns the value of the recordedAtMs record component.
    int
    Returns the value of the success record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ProxyHistorySnapshotStats

      public ProxyHistorySnapshotStats(int attempted, int success, long durationMs, int finalChunkTarget, long recordedAtMs)
      Creates an instance of a ProxyHistorySnapshotStats record class.
      Parameters:
      attempted - the value for the attempted record component
      success - the value for the success record component
      durationMs - the value for the durationMs record component
      finalChunkTarget - the value for the finalChunkTarget record component
      recordedAtMs - the value for the recordedAtMs record component
  • Method Details

    • docsPerSecond

      public double docsPerSecond()
      Returns effective throughput in docs/sec for this snapshot, or 0 when unavailable.
    • 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. All components in this record class 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.
    • attempted

      public int attempted()
      Returns the value of the attempted record component.
      Returns:
      the value of the attempted record component
    • success

      public int success()
      Returns the value of the success record component.
      Returns:
      the value of the success record component
    • durationMs

      public long durationMs()
      Returns the value of the durationMs record component.
      Returns:
      the value of the durationMs record component
    • finalChunkTarget

      public int finalChunkTarget()
      Returns the value of the finalChunkTarget record component.
      Returns:
      the value of the finalChunkTarget record component
    • recordedAtMs

      public long recordedAtMs()
      Returns the value of the recordedAtMs record component.
      Returns:
      the value of the recordedAtMs record component