Class AgentlessBuildStartResult
- java.lang.Object
-
- jetbrains.buildServer.serverSide.agentless.AgentlessBuildStartResult
-
public class AgentlessBuildStartResult extends Object
Result of an attempt to start an agentless build.- Since:
- 2022.10
-
-
Constructor Summary
Constructors Constructor Description AgentlessBuildStartResult(String executorName, WaitReason waitReason)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getExecutorName()
String name of the executor of this agentless buildWaitReason
getWaitReason()
Reason describing why this agentless build is still waiting in the queue.
-
-
-
Constructor Detail
-
AgentlessBuildStartResult
public AgentlessBuildStartResult(@NotNull String executorName, @Nullable WaitReason waitReason)
-
-
Method Detail
-
getExecutorName
@NotNull public String getExecutorName()
String name of the executor of this agentless build- Returns:
- see above
- Since:
- 2022.10
-
getWaitReason
@Nullable public WaitReason getWaitReason()
Reason describing why this agentless build is still waiting in the queue. Is null if the build has been started- Returns:
- see above
- Since:
- 2022.10
-
-