Record Class StreamLag

java.lang.Object
java.lang.Record
org.nuxeo.ecm.restapi.jaxrs.io.management.StreamLag

public record StreamLag(String stream, String consumer, List<LogLag> lags) extends Record
Since:
2025.12
  • Constructor Summary

    Constructors
    Constructor
    Description
    StreamLag(String stream, String consumer, List<LogLag> lags)
    Creates an instance of a StreamLag record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the consumer record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    Returns the value of the lags record component.
    Returns the value of the stream 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

    • StreamLag

      public StreamLag(String stream, String consumer, List<LogLag> lags)
      Creates an instance of a StreamLag record class.
      Parameters:
      stream - the value for the stream record component
      consumer - the value for the consumer record component
      lags - the value for the lags record component
  • Method Details

    • 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 Objects::equals(Object,Object).
      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.
    • stream

      public String stream()
      Returns the value of the stream record component.
      Returns:
      the value of the stream record component
    • consumer

      public String consumer()
      Returns the value of the consumer record component.
      Returns:
      the value of the consumer record component
    • lags

      public List<LogLag> lags()
      Returns the value of the lags record component.
      Returns:
      the value of the lags record component