Package io.opencensus.stats
Class AggregationData.LastValueDataLong
java.lang.Object
io.opencensus.stats.AggregationData
io.opencensus.stats.AggregationData.LastValueDataLong
- Direct Known Subclasses:
AutoValue_AggregationData_LastValueDataLong
- Enclosing class:
AggregationData
The last value of aggregated
MeasureValueLong
s.- Since:
- 0.13
-
Nested Class Summary
Nested classes/interfaces inherited from class io.opencensus.stats.AggregationData
AggregationData.CountData, AggregationData.DistributionData, AggregationData.LastValueDataDouble, AggregationData.LastValueDataLong, AggregationData.MeanData, AggregationData.SumDataDouble, AggregationData.SumDataLong
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreate
(long lastValue) Creates aLastValueDataLong
.abstract long
Returns the last value.final <T> T
match
(Function<? super AggregationData.SumDataDouble, T> p0, Function<? super AggregationData.SumDataLong, T> p1, Function<? super AggregationData.CountData, T> p2, Function<? super AggregationData.DistributionData, T> p3, Function<? super AggregationData.LastValueDataDouble, T> p4, Function<? super AggregationData.LastValueDataLong, T> p5, Function<? super AggregationData, T> defaultFunction) Applies the given match function to the underlying data type.
-
Constructor Details
-
LastValueDataLong
LastValueDataLong()
-
-
Method Details
-
create
Creates aLastValueDataLong
.- Parameters:
lastValue
- the last value.- Returns:
- a
LastValueDataLong
. - Since:
- 0.13
-
getLastValue
public abstract long getLastValue()Returns the last value.- Returns:
- the last value.
- Since:
- 0.13
-
match
public final <T> T match(Function<? super AggregationData.SumDataDouble, T> p0, Function<? super AggregationData.SumDataLong, T> p1, Function<? super AggregationData.CountData, T> p2, Function<? super AggregationData.DistributionData, T> p3, Function<? super AggregationData.LastValueDataDouble, T> p4, Function<? super AggregationData.LastValueDataLong, T> p5, Function<? super AggregationData, T> defaultFunction) Description copied from class:AggregationData
Applies the given match function to the underlying data type.- Specified by:
match
in classAggregationData
-