Record Class TimerStats
java.lang.Object
java.lang.Record
org.springframework.integration.graph.TimerStats
- Record Components:
count
- the number of times the timer was invokedmean
- the mean of the timermax
- the maximum of the timer
Statistics captured from a timer meter.
- Since:
- 5.2
- Author:
- Gary Russell, Artem Bilan
-
Constructor Summary
ConstructorsConstructorDescriptionTimerStats
(long count, double mean, double max) Creates an instance of aTimerStats
record class. -
Method Summary
Modifier and TypeMethodDescriptionlong
count()
Returns the value of thecount
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.double
max()
Returns the value of themax
record component.double
mean()
Returns the value of themean
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
TimerStats
-
-
Method Details
-
toString
-
hashCode
-
equals
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 thecompare
method from their corresponding wrapper classes. -
count
-
mean
-
max
-