Interface EventComp
-
- All Known Subinterfaces:
Event
public interface EventComp
This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<FileEvent>
getFileEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEvent.getFileEvents()
instead.Iterator<JobRaiseEvent>
getJobRaiseEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEvent.getJobRaiseEvents()
instead.Iterator<JobWaitEvent>
getJobWaitEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEvent.getJobWaitEvents()
instead.
-
-
-
Method Detail
-
getFileEvents
@Deprecated Iterator<FileEvent> getFileEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEvent.getFileEvents()
instead.Get anIterator
over an ordered collection ofFileEvents
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Information about the EventSourceDefinition (if any) that triggered this event.
-
getJobRaiseEvents
@Deprecated Iterator<JobRaiseEvent> getJobRaiseEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEvent.getJobRaiseEvents()
instead.Get anIterator
over an ordered collection ofJobRaiseEvents
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. If this is set, then the associated Job raised this instance of its associated EventDefinition.- Returns:
- An
Iterator
over an ordered collection ofJobRaiseEvent
objects .
-
getJobWaitEvents
@Deprecated Iterator<JobWaitEvent> getJobWaitEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEvent.getJobWaitEvents()
instead.Get anIterator
over an ordered collection ofJobWaitEvents
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. If this is set, then the associated Job no longer needs to wait on its associated EventDefinition.- Returns:
- An
Iterator
over an ordered collection ofJobWaitEvent
objects .
-
-