Interface PipelineExecutorTrace
-
- All Known Implementing Classes:
PipelineExecutorTraceImpl
public interface PipelineExecutorTraceRepresents a pipeline execution recording.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPipelineId()Shortcut to the pipeline id related with this trace.PipelineExecutorTaskgetTask()Gets the task that was executed.StringgetTaskId()Shortcut to the task id related with this trace.
-
-
-
Method Detail
-
getTaskId
String getTaskId()
Shortcut to the task id related with this trace.- Returns:
- returns the id of the internal task.
-
getPipelineId
String getPipelineId()
Shortcut to the pipeline id related with this trace.- Returns:
- returns the pipeline id of the pipeline related with this trace.
-
getTask
PipelineExecutorTask getTask()
Gets the task that was executed.- Returns:
- returns the internal task.
-
-