Package com.adobe.aio.cloudmanager
Interface PipelineExecutionEvent
-
- All Known Subinterfaces:
PipelineExecutionEndEvent
,PipelineExecutionStartEvent
,PipelineExecutionStepEndEvent
,PipelineExecutionStepStartEvent
,PipelineExecutionStepWaitingEvent
public interface PipelineExecutionEvent
Root interface that represents all Pipeline Execution events that may be published. Consumers should test against an explicit type to determine which event was received.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull String
getId()
The id of this event.@NotNull OffsetDateTime
getPublished()
The time at which the event was published.
-
-
-
Method Detail
-
getId
@NotNull @NotNull String getId()
The id of this event.- Returns:
- the id
-
getPublished
@NotNull @NotNull OffsetDateTime getPublished()
The time at which the event was published.- Returns:
- the event published time
-
-