BBjAppConfig::clearClientPollInterval

Description

In BBj 12.0 and higher, this method clears any application-specific setting and uses the server's default setting for the length of time in seconds the web server will wait for the next command from BBjServices.

Syntax

Return Value

Method

void

clearClientPollInterval()

Parameters

None.

Return Values

None.

Remarks

None.

Example

rem ' BBjAppConfig::clearClientPollInterval

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
print "getClientPollInterval:",
print appConfig!.getClientPollInterval()
print "setClientPollInterval(60)"
appConfig!.setClientPollInterval(60)
print "getClientPollInterval:",
print appConfig!.getClientPollInterval()
print "clearClientPollInterval()"
appConfig!.clearClientPollInterval()
print "getClientPollInterval:",
print appConfig!.getClientPollInterval()

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::getClientPollInterval

BBjAppConfig::setClientPollInterval

BBjAppServer

BBjAppServer::getClientPollInterval

BBjAppServer::setClientPollInterval

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.