Description
Sets global poll interval. The value takes effect only if it
is lower than current poll interval. Setting the value to zero disables timeouts
on all user databases open in all sessions within the current process.
Note: This
method is new in version 2003.06.15 and is for Perl only. It is not available
for VBScript.
Syntax
Perl
$clearquestObj->SetSessionTimerPollInterval(seconds);
- Identifier
- Description
- clearquestObj
- A CQClearQuest object.
- seconds
- A Long containing the value in seconds for a new poll interval.
- Return value
- None.
Example
Perl
use CQPerlExt;
my $cqobject = CQClearQuest::Build()
my $currentPollInterval = $cqobject->GetSessionTimerPollInterval();
# Disable db timeouts by setting Poll interval to 0
$cqobject->SetSessionTimerPollInterval (0);