maeStopJob
maeStopJob( [?sessiont_sessionName] [?jobTypet_jobType] [?forceg_force] [?exitCodet_exitCode] ) => t / nil
Description
Stops the job for the specified job ID regardless of its state.
Arguments
|
If set to |
Value Returned
|
The job is stopped for the specified job ID regardless of its state. |
||
|
The job is not stopped for the specified job ID regardless of its state. |
||
Examples
Stops the job for the specified job ID.
maeStopJob(3)
=>t
Stops the job for the specified job ID by sending a SIGKILL signal.
maeStopJob(5 ?force t)
=>t
Return to top