eliCheckOutAndLock
eliCheckOutAndLock(t_licenseName) =>t_licenseName/nil
Description
Checks out and locks the specified license feature. After the specified license feature is locked, it cannot be checked in until the session ends. Use this function in a scripted batch process to reduce runtime due to licensing.
The function does not work and displays an error if any one of following Framework level license is specified.
Arguments
|
Name of the license feature or GXL capability (tag) to be checked out. |
Values Returned
Examples
Checks out and locks the license Virtuoso_Layout_Suite_XL.
eliCheckOutAndLock("Virtuoso_Layout_Suite_XL")
=>
"Virtuoso_Layout_Suite_XL"
A short script to check out and lock the Virtuoso_Layout_Suite_XL license:
if( eliCheckOutAndLock( "Virtuoso_Layout_Suite_XL" ) then
launchScriptWork()
else
info( "Cannot acquire Virtuoso_Layout_Suite_XL license." )
)
Related Topics
Return to top