Interface BuildDistributorInput
-
- All Superinterfaces:
BuildsInfo
- All Known Subinterfaces:
BuildDistributorInputEx
- All Known Implementing Classes:
InputData
public interface BuildDistributorInput extends BuildsInfo
Input data used by build distributor. Build distributor assigns builds which can be started to agents.- Since:
- 4.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<SBuildAgent>
getAgents()
Set<SBuildAgent>
getBusyAgents()
-
Methods inherited from interface jetbrains.buildServer.serverSide.buildDistribution.BuildsInfo
getQueue, getRunningBuilds
-
-
-
-
Method Detail
-
getAgents
@NotNull Collection<SBuildAgent> getAgents()
- Returns:
- all the agents registered in the system
-
getBusyAgents
@NotNull Set<SBuildAgent> getBusyAgents()
- Returns:
- agents which are currently running builds
- Since:
- 2022.12
-
-