Interface ThreadEvent
-
- All Superinterfaces:
Event
- All Known Implementing Classes:
AbstractThreadEvent,ThreadEnterEvent,ThreadExitEvent
public interface ThreadEvent extends Event
An event issued to the event bus on Thread entry/exit
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classThreadEvent.OperationThe specific type of ThreadEvent
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetChildId()Get the child threadIdThreadEvent.OperationgetOperation()Get the particular type of ThreadEvent ENTERING or EXITINGlonggetParentId()Get the parent threadId
-
-
-
Method Detail
-
getParentId
long getParentId()
Get the parent threadId- Returns:
- the parent threadId
-
getChildId
long getChildId()
Get the child threadId- Returns:
- the child threadId
-
getOperation
ThreadEvent.Operation getOperation()
Get the particular type of ThreadEvent ENTERING or EXITING- Returns:
- the specific thread Operation
-
-