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 class
BuildTimingPoints.AgentAssigned
Not using @AsynchronousPreferred on this type to avoid async executionstatic class
BuildTimingPoints.ExecutionCancelled
Not using @AsynchronousPreferred on this type to avoid async executionstatic class
BuildTimingPoints.ExecutionFinished
Not using @AsynchronousPreferred on this type to avoid async executionstatic class
BuildTimingPoints.ExecutionStarted
Not using @AsynchronousPreferred on this type to avoid async executionstatic class
BuildTimingPoints.Queued
Not using @AsynchronousPreferred on this type to avoid async executionstatic class
BuildTimingPoints.SentToAgent
Not using @AsynchronousPreferred on this type to avoid async executionstatic class
BuildTimingPoints.VcsSyncStarted
Deprecated.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.AgentAssigned
agentAssigned(@NotNull PlanResultKey planResultKey, @NotNull Date date, long agentId)
static BuildTimingPoints.ExecutionCancelled
executionCancelled(@NotNull PlanResultKey planResultKey, @NotNull Date date, boolean buildActuallyCancelled)
static BuildTimingPoints.ExecutionFinished
executionFinished(@NotNull PlanResultKey planResultKey, @NotNull Date date)
static BuildTimingPoints.ExecutionStarted
executionStarted(@NotNull PlanResultKey planResultKey, @NotNull Date date)
static BuildTimingPoints.Queued
queued(@NotNull BuildContext buildContext, @NotNull Date date)
static BuildTimingPoints.SentToAgent
sentToAgent(@NotNull PlanResultKey planResultKey, @NotNull Date date, long agentId)
static BuildTimingPoints.VcsSyncStarted
vcsSyncStarted(@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)
-
-