Interface BuildValueProvider
-
- All Superinterfaces:
ValueProvider
- All Known Implementing Classes:
BuildAllTestsDurationValueType
,BuildDurationValueType
,BuildFinishAwareValueTypeBase
,BuildValueTypeBase
,MultipleKeysBuildMetricVT
,ReusedBuildTimeValueType
,RunningDetachedTimeValueType
,SimpleBuildMetricVT
,SuccessRateValueType
,TimeToFixValueType
public interface BuildValueProvider extends ValueProvider
Base interface for build specific value providers.- Since:
- 7.1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,BuildValue>
getData(SBuild build)
-
Methods inherited from interface jetbrains.buildServer.serverSide.statistics.ValueProvider
getDataSet, getKey, hasData
-
-
-
-
Method Detail
-
getData
@NotNull Map<String,BuildValue> getData(@NotNull SBuild build)
- Parameters:
build
- build to return statistics value for- Returns:
- map of build values provided by this value provider for a given build (each value provider can report more than one statistics value, see
CompositeVTB
). - Since:
- 7.1.3
-
-