Interface TimestampAssignerSupplier.Context
-
- All Known Implementing Classes:
TimestampsAndWatermarksContext
- Enclosing interface:
- TimestampAssignerSupplier<T>
public static interface TimestampAssignerSupplier.Context
Additional information available toTimestampAssignerSupplier.createTimestampAssigner(Context)
. This can be access toMetricGroups
, for example.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetricGroup
getMetricGroup()
Returns the metric group for the context in which the createdTimestampAssigner
is used.
-
-
-
Method Detail
-
getMetricGroup
MetricGroup getMetricGroup()
Returns the metric group for the context in which the createdTimestampAssigner
is used.Instances of this class can be used to register new metrics with Flink and to create a nested hierarchy based on the group names. See
MetricGroup
for more information for the metrics system.- See Also:
MetricGroup
-
-