|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface JobsTableListener
This interface defines the methods that a lister to the job table should implement.
Method Summary | |
---|---|
void |
jobClassIDHasBeenChanged(long jobID,
int jobClassId)
The method is invoked when the job class ID of a job is changed. |
void |
jobHasBeenAdded(long jobID,
long jobSecondaryID,
int jobClassID,
java.lang.String serverName,
java.util.GregorianCalendar timeSubmitted,
java.util.GregorianCalendar timeSent,
java.util.GregorianCalendar timeStarted,
java.util.GregorianCalendar timeDone,
java.lang.String status,
boolean timedOut)
This method is invoked when a table is added to the table |
void |
secondaryIDHasBeenChanged(long jobID,
long jobSecondayID)
The method is invoked when the secondary ID of a job is changed. |
void |
serverIDHasBeenChanged(long jobID,
int serverID)
The method is invoked when the server of a job is changed. |
void |
serverNameHasBeenChanged(long jobID,
java.lang.String serverName)
The method is invoked when the server of a job is changed. |
void |
statusHasBeenChanged(long jobID,
java.lang.String status)
The method is invoked when the status of a job is changed. |
void |
timeDoneHasBeenChanged(long jobID,
java.util.GregorianCalendar timeDone)
The method is invoked when the timeDone of a job is changed. |
void |
timedOutStatusChanged(long jobID,
boolean timedOut)
The method is invoked when a job is times-out. |
void |
timeSentHasBeenChanged(long jobID,
java.util.GregorianCalendar timeSent)
The method is invoked when the timeStarted of a job is changed. |
void |
timeStartedHasBeenChanged(long jobID,
java.util.GregorianCalendar timeStarted)
The method is invoked when the timeStarted of a job is changed. |
void |
timeSubmittedHasBeenChanged(long jobID,
java.util.GregorianCalendar timeSubmitted)
The method is invoked when the timeSubmitted of a job is changed. |
Method Detail |
---|
void jobHasBeenAdded(long jobID, long jobSecondaryID, int jobClassID, java.lang.String serverName, java.util.GregorianCalendar timeSubmitted, java.util.GregorianCalendar timeSent, java.util.GregorianCalendar timeStarted, java.util.GregorianCalendar timeDone, java.lang.String status, boolean timedOut)
jobID
- The job id.jobSecondaryID
- The job secondary id.jobClassID
- The ID of the job class that this job belongs toserverName
- The hostname of the server of this job.timeSubmitted
- The time of submission for this job.timeSent
- The time of sending for this job.timeStarted
- The time of start for this job.timeDone
- The time of completion for this job.status
- The status of this jobtimedOut
- If this job is timed out or not.void secondaryIDHasBeenChanged(long jobID, long jobSecondayID)
jobID
- The ID of the job in subject.jobSecondayID
- The new secondary ID of the job in subject.void jobClassIDHasBeenChanged(long jobID, int jobClassId)
jobID
- The ID of the job in subject.jobClassId
- the new jobClassID.void serverNameHasBeenChanged(long jobID, java.lang.String serverName)
jobID
- The ID of the job in subject.serverName
- the new server name of the job is subjectvoid serverIDHasBeenChanged(long jobID, int serverID)
jobID
- The ID of the job in subject.ID
- the new server ID of the job is subject.void timeSubmittedHasBeenChanged(long jobID, java.util.GregorianCalendar timeSubmitted)
jobID
- The ID of the job in subject.timeSubmitted
- the new timeSubmitted of the job in subject.void timeSentHasBeenChanged(long jobID, java.util.GregorianCalendar timeSent)
jobID
- The ID of the job in subject.timeSent
- the new timeSubmitted of the job in subject.void timeStartedHasBeenChanged(long jobID, java.util.GregorianCalendar timeStarted)
jobID
- The ID of the job in subject.timeStarted
- the new timeStarted of the job in subject.void timeDoneHasBeenChanged(long jobID, java.util.GregorianCalendar timeDone)
jobID
- The ID of the job in subject.timeDone
- the new timeDone of the job in subject.void statusHasBeenChanged(long jobID, java.lang.String status)
jobID
- The ID of the job in subject.status
- the new status of the job in subject.void timedOutStatusChanged(long jobID, boolean timedOut)
jobID
- the ID of the job in subject.timedOut
- a boolean value. True if timed-out, false otherwise.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |