Class BuildTimingPoints
- java.lang.Object
-
- com.atlassian.bamboo.v2.build.timing.BuildTimingPoints
-
- All Implemented Interfaces:
BuildTimingPoint,TimingPoint,Serializable
public abstract class BuildTimingPoints extends Object implements BuildTimingPoint
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBuildTimingPoints.AgentAssignedNot using @AsynchronousPreferred on this type to avoid async executionstatic classBuildTimingPoints.ExecutionCancelledNot using @AsynchronousPreferred on this type to avoid async executionstatic classBuildTimingPoints.ExecutionFinishedNot using @AsynchronousPreferred on this type to avoid async executionstatic classBuildTimingPoints.ExecutionStartedNot using @AsynchronousPreferred on this type to avoid async executionstatic classBuildTimingPoints.QueuedNot using @AsynchronousPreferred on this type to avoid async executionstatic classBuildTimingPoints.SentToAgentNot using @AsynchronousPreferred on this type to avoid async executionstatic classBuildTimingPoints.VcsSyncStartedDeprecated.since 9.3 not really related to actual VCS operations
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static BuildTimingPoints.AgentAssignedagentAssigned(@NotNull PlanResultKey planResultKey, @NotNull Date date, long agentId)static BuildTimingPoints.ExecutionCancelledexecutionCancelled(@NotNull PlanResultKey planResultKey, @NotNull Date date, boolean buildActuallyCancelled)static BuildTimingPoints.ExecutionFinishedexecutionFinished(@NotNull PlanResultKey planResultKey, @NotNull Date date)static BuildTimingPoints.ExecutionStartedexecutionStarted(@NotNull PlanResultKey planResultKey, @NotNull Date date)static BuildTimingPoints.Queuedqueued(@NotNull BuildContext buildContext, @NotNull Date date)static BuildTimingPoints.SentToAgentsentToAgent(@NotNull PlanResultKey planResultKey, @NotNull Date date, long agentId)static BuildTimingPoints.VcsSyncStartedvcsSyncStarted(@NotNull PlanResultKey planResultKey, @NotNull Date date)Deprecated.since 9.3 not really related to actual VCS operations-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.atlassian.bamboo.v2.build.timing.BuildTimingPoint
getPlanResultKey
-
Methods inherited from interface com.atlassian.bamboo.v2.build.timing.TimingPoint
getDate
-
-
-
-
Method Detail
-
queued
public static BuildTimingPoints.Queued queued(@NotNull @NotNull BuildContext buildContext, @NotNull @NotNull Date date)
-
agentAssigned
public static BuildTimingPoints.AgentAssigned agentAssigned(@NotNull @NotNull PlanResultKey planResultKey, @NotNull @NotNull Date date, long agentId)
-
sentToAgent
public static BuildTimingPoints.SentToAgent sentToAgent(@NotNull @NotNull PlanResultKey planResultKey, @NotNull @NotNull Date date, long agentId)
-
vcsSyncStarted
@Deprecated public static BuildTimingPoints.VcsSyncStarted vcsSyncStarted(@NotNull @NotNull PlanResultKey planResultKey, @NotNull @NotNull Date date)
Deprecated.since 9.3 not really related to actual VCS operations
-
executionStarted
public static BuildTimingPoints.ExecutionStarted executionStarted(@NotNull @NotNull PlanResultKey planResultKey, @NotNull @NotNull Date date)
-
executionCancelled
public static BuildTimingPoints.ExecutionCancelled executionCancelled(@NotNull @NotNull PlanResultKey planResultKey, @NotNull @NotNull Date date, boolean buildActuallyCancelled)
-
executionFinished
public static BuildTimingPoints.ExecutionFinished executionFinished(@NotNull @NotNull PlanResultKey planResultKey, @NotNull @NotNull Date date)
-
-