Package org.firebirdsql.gds
Interface EventHandle
-
- All Known Implementing Classes:
AbstractEventHandle
,JnaEventHandle
,WireEventHandle
public interface EventHandle
Handle to internal event-handling structures.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getEventCount()
Get the count of event occurrences for the most recent occurrence(s) of the event for which this handle is registered.int
getEventId()
Get the internal event id number for this handlejava.lang.String
getEventName()
Get the name of the event for which this handle is set to listen for
-
-
-
Method Detail
-
getEventName
java.lang.String getEventName()
Get the name of the event for which this handle is set to listen for- Returns:
- The name of the event
-
getEventCount
int getEventCount()
Get the count of event occurrences for the most recent occurrence(s) of the event for which this handle is registered.- Returns:
- The event count
-
getEventId
int getEventId()
Get the internal event id number for this handle- Returns:
- The internal event id
-
-