Interface EventDefinitionComp
-
- All Known Subinterfaces:
EventDefinition
public interface EventDefinitionComp
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<Event>
getEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getEvents()
instead.Iterator<FileEventDefinition>
getFileEventDefinitions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getFileEventDefinitions()
instead.Iterator<JobDefinitionRaiseEvent>
getJobDefinitionRaiseEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getJobDefinitionRaiseEvents()
instead.Iterator<JobDefinitionRuntimeLimit>
getJobDefinitionRuntimeLimits()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getJobDefinitionRuntimeLimits()
instead.Iterator<JobDefinitionWaitEvent>
getJobDefinitionWaitEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getJobDefinitionWaitEvents()
instead.Iterator<MonitorEvent>
getMonitorEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getMonitorEvents()
instead.
-
-
-
Method Detail
-
getEvents
@Deprecated Iterator<Event> getEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getEvents()
instead.
-
getFileEventDefinitions
@Deprecated Iterator<FileEventDefinition> getFileEventDefinitions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getFileEventDefinitions()
instead.Get anIterator
over an ordered collection ofFileEventDefinitions
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. EventSourceDefinitions that can raise this event definition.- Returns:
- An
Iterator
over an ordered collection ofFileEventDefinition
objects .
-
getJobDefinitionRaiseEvents
@Deprecated Iterator<JobDefinitionRaiseEvent> getJobDefinitionRaiseEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getJobDefinitionRaiseEvents()
instead.Get anIterator
over an ordered collection ofJobDefinitionRaiseEvents
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Which EventDefinition will be raised when the job reaches a particular status?- Returns:
- An
Iterator
over an ordered collection ofJobDefinitionRaiseEvent
objects .
-
getJobDefinitionRuntimeLimits
@Deprecated Iterator<JobDefinitionRuntimeLimit> getJobDefinitionRuntimeLimits()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getJobDefinitionRuntimeLimits()
instead.Get anIterator
over an ordered collection ofJobDefinitionRuntimeLimits
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Which EventDefinition to be raised if the runtime limit is reached?- Returns:
- An
Iterator
over an ordered collection ofJobDefinitionRuntimeLimit
objects .
-
getJobDefinitionWaitEvents
@Deprecated Iterator<JobDefinitionWaitEvent> getJobDefinitionWaitEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getJobDefinitionWaitEvents()
instead.Get anIterator
over an ordered collection ofJobDefinitionWaitEvents
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Which EventDefinition must be raised before this WaitEvent is satisfied?- Returns:
- An
Iterator
over an ordered collection ofJobDefinitionWaitEvent
objects .
-
getMonitorEvents
@Deprecated Iterator<MonitorEvent> getMonitorEvents()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useEventDefinition.getMonitorEvents()
instead.Get anIterator
over an ordered collection ofMonitorEvents
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Which Event should the Monitor raise on an error condition?- Returns:
- An
Iterator
over an ordered collection ofMonitorEvent
objects .
-
-