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
|
Stops the jobs associated with the specified session. When not specified, the jobs associated with the current session are stopped. |
||
Value Returned
|
All jobs you started during the current or specified session are stopped. |
||
Examples
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