Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

maeStopJob

maeStopJob(
[ ?session t_sessionName ]
[ ?jobType t_jobType ]
[ ?force g_force ]
[ ?exitCode t_exitCode ]
)
=> t / nil

Description

Stops the job for the specified job ID regardless of its state.

Arguments

?jobType t_jobType

The ID of the job to be stopped.

?force g_force

If set to t, kills the job by sending a signal, such as SIGKILL. Otherwise, it kills the job by using an internal communication mechanism.

Value Returned

t

The job is stopped for the specified job ID regardless of its state.

nil

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
 ⠀
X