Package org.apache.camel
Interface StartupStep
-
public interface StartupStepRecording state of steps during startup to capture execution time, and being able to emit events to diagnostic tools such as Java Flight Recorder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidendStep()Ends the step.longgetBeginTime()Gets the begin time (optional).StringgetDescription()Description of the stepintgetId()The id of the stepintgetLevel()The step level (sub step of previous steps)StringgetName()Name of the stepintgetParentId()The id of the parent stepStringgetType()The source class type of the step
-
-
-
Method Detail
-
getType
String getType()
The source class type of the step
-
getName
String getName()
Name of the step
-
getDescription
String getDescription()
Description of the step
-
getId
int getId()
The id of the step
-
getParentId
int getParentId()
The id of the parent step
-
getLevel
int getLevel()
The step level (sub step of previous steps)
-
endStep
void endStep()
Ends the step.
-
getBeginTime
long getBeginTime()
Gets the begin time (optional).
-
-