NSOA.wsapi.remainingTime()

Use this function to determine how much time your script has remaining to execute inside wsapi functions before it is terminated by Scripting Governance.

You can use this function to help you create more efficient scripts and also to take corrective action if a script is at risk of consuming excessive resources.

Parameters

(none)

Returns

Amount of time remaining allowed for the script to execute inside wsapi calls in milliseconds.

Tip:

Always try to reduce the amount of time your scripts take to execute.

Units Limit

0 units

For more information, see Scripting Governance.

Since

October 18, 2014

Example

This example logs the amount of wsapi time remaining for the script to execute in milliseconds.

              NSOA.meta.log('info', 'Remaining wsapi time: ' 
            + NSOA.wsapi.remainingTime() + ' milliseconds'); 

        

See also NSOA.context.remainingTime().

For more information see Scripting Governance.