$session->setCorrelationParameters( @info )
The setCorrelationParameters() function sets the Domain Manager correlation parameters.
The section “getCorrelationParameters” on page 83 describes the fields of the @info array. The following example sets the correlation interval to 20 seconds.
@info = $session->getCorrelationParameters( ); $info[1] = 20; $session->setCorrelationParameters( @info );