NumInterpOverride Property

NumInterpOverride Property

Gets and sets the number of SALT interpreters that Telephony Application Services creates to service incoming calls.

obj.NumInterpOverride = integer

Part

Description

obj

An instance of the TAS class.

integer

An unsigned integer specifying the number of SALT interpreters. Valid values can range from 0 to 500.

Qualifiers

Qualifier

Value

Description

Registry

False

If True, this property value is read from the Registry.

Restart

False

If False, changes to this property take effect without requiring the service to restart.

DefaultValue

0

Default value for this property.

MinValue

0

Minimum value for this property.

MaxValue

500

Maximum value for this property.

Remarks

This property is not exposed in the Microsoft Speech Server (MSS) snap-in for Microsoft Management Console (MMC). Values that do not appear in the MMC are generally more advanced configuration options, changeable only through VBScript. Changes to these settings should be tested in a safe environment before implementing them on live production servers. Changing these settings can cause extensive changes to the entire system.

By default, the number of SALT interpreters is managed dynamically, based on the load on the system, by the SALT interpreter manager. Setting this value fixes the number of SALT interpreters, which overrides the dynamic nature of the SALT interpreter manager. Setting the value of the NumInterpOverride property to a value other than the default will also override Application Domain recycling due to memory pressure, as set by the LoadMemoryLimit property.

Windows Management Instrumentation (WMI) Script Example

myComputer = "localhost"

' Use a Locator object to connect to WMI.
Set locator = CreateObject("WbemScripting.SWbemLocator")
Set namespace = locator.ConnectServer(myComputer, "root/MSS")

' Get the TAS instance.
Set tel = namespace.Get("TAS=@")

' Display the current value.
WScript.Echo tel.NumInterpOverride

' Set the property value.
tel.NumInterpOverride = 250

' Update the class instance in WMI.
tel.Put_

Member Of

TAS class