Package com.technia.tif.enovia.jobevent
Interface JobEvent
-
- All Known Subinterfaces:
ErrorEvent,StartEvent,SuccessEvent,ValidateEvent
@API public interface JobEventEvent data containing information about the triggered event. Used inJobEventListener. See sub-classes for information specific for each type of event.- Since:
- 2015.3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobEventTypegetEventType()The type of the event, e.g.com.technia.tif.enovia.model.JobgetJob()Job event trigger on.com.technia.tif.core.log.ProgressLoggergetProgressLogger()
-
-
-
Method Detail
-
getJob
com.technia.tif.enovia.model.Job getJob()
Job event trigger on.- Returns:
- The job
- Since:
- 2015.3.0
-
getEventType
JobEventType getEventType()
The type of the event, e.g. start, success or error.- Returns:
- Type of the event
- Since:
- 2015.3.0
-
getProgressLogger
com.technia.tif.core.log.ProgressLogger getProgressLogger()
- Returns:
- The progress logger allowing logging the progress of the event processing.
- Since:
- 2021.2.0
-
-