@NonNls
public final class BuildInterruptReason
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static BuildInterruptReason |
AGENT_CANCEL_BUILD
Build is canceled by an agent API call
|
static BuildInterruptReason |
AGENT_SHUTDOWN
Build is terminated because of the build agent shutdown
|
static BuildInterruptReason |
AGENT_STOP_BUILD
Build is terminated on agent because of some error
|
static BuildInterruptReason |
EXECUTION_TIMEOUT
Build is terminated because execution time limit is exceeded
|
static BuildInterruptReason |
NOT_RUNNING_BUILD_ON_SERVER
This build is not running on the server
|
static BuildInterruptReason |
SERVER_STOP_BUILD
Build is terminated by 'Stop build' command from the server
|
static BuildInterruptReason |
SERVER_STOP_BY_PLUGIN
Build is marked as failed and stopped without being marked as canceled by an agent API call (AgentRunningBuildEx#stop method)
Beware that the name of the constant can be misleading
|
static BuildInterruptReason |
UNKNOWN_REASON
Used in case if interrupt reason could not be identified.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getUserDescription() |
java.lang.String |
toString() |
@NonNls public static final BuildInterruptReason EXECUTION_TIMEOUT
@NonNls public static final BuildInterruptReason AGENT_SHUTDOWN
@NonNls public static final BuildInterruptReason NOT_RUNNING_BUILD_ON_SERVER
@NonNls public static final BuildInterruptReason SERVER_STOP_BUILD
@NonNls public static final BuildInterruptReason SERVER_STOP_BY_PLUGIN
@NonNls public static final BuildInterruptReason AGENT_CANCEL_BUILD
@NonNls public static final BuildInterruptReason AGENT_STOP_BUILD
@NonNls public static final BuildInterruptReason UNKNOWN_REASON