Obtains the given license feature from the license server and holds it for the duration of the application's lifetime. Any additional checkout attempts by the application for the license will not increment the license count. Closing the application is the only way to release the license back into the pool.
Syntax |
Description |
---|---|
checkout("licensefeature"); |
Obtains the given license feature from the license server and holds it for the duration of the application's lifetime. |
Concurrent licenses features can be found by navigating to port 8095 on your license server. The Flexera dashboard will show how many of the specified licenses are available and currently in use. Case sensitive feature names listed here can be passed to the checkout function.
Example
This example obtains and holds the heat solver, FDTD engine, and the CML compiler license features from the license server.
checkout('heat_solver');
checkout('FDTD_Solutions_engine');
checkout('cml_compiler');
See Also