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

axlStopAllJobs

axlStopAllJobs( 
[ t_sessionName ]
[ g_forceFlag ]
) 
=> t / nil

Description

Stops all jobs you started during the current or specified session, regardless of their state (started, getting configured, running)

Arguments

t_sessionName

Stops the jobs associated with the specified session.

When not specified, the jobs associated with the current session are stopped.

g_forceFlag

Forcefully terminates the jobs.

Value Returned

t

All jobs you started during the current or specified session are stopped.

nil

Indicates an error.

Examples

Stops all the jobs.

axlStopAllJobs( )
=> t

Stops only the jobs associated with the session named session0.

axlStopAllJobs("session0")
=> t

Forcefully terminates all the jobs.

axlStopAllJobs( t )
=> t

Forcefully terminates the jobs associated with the session named session0.

axlStopAllJobs("session0" t)
=> t

Return to top
 ⠀
X