Interface DatasetMetricsService
-
public interface DatasetMetricsService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatasetMetrics
get(UUID datasetKey)
List<DatasetMetrics>
list(UUID datasetKey)
-
-
-
Method Detail
-
get
@Nullable DatasetMetrics get(UUID datasetKey)
- Returns:
- metrics about this dataset or null if none could be found
-
list
@Nullable List<DatasetMetrics> list(UUID datasetKey)
- Returns:
- the list of all metrics about this dataset ordered by ascending created timestamp. An empty list if no matching dataset is found.
-
-