Class SingleNodeAgentCommandResult
- java.lang.Object
-
- jetbrains.buildServer.serverSide.impl.agent.SingleNodeAgentCommandResult
-
public class SingleNodeAgentCommandResult extends Object
-
-
Constructor Summary
Constructors Constructor Description SingleNodeAgentCommandResult(String type, Supplier<Long> timeSupplier, String agentName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
done(String result)
void
error(Error error)
void
inProgress()
boolean
isFinished()
String
waitForResult()
-
-
-
Method Detail
-
waitForResult
@NotNull public String waitForResult() throws AgentTimeoutException, AgentCommandExecutionException, InterruptedException
-
error
public void error(@NotNull Error error)
-
done
public void done(String result)
-
inProgress
public void inProgress()
-
isFinished
public boolean isFinished()
-
-