lr.rendezvous
Creates a rendezvous point in the Vuser script.
JavaScript
function lr.rendezvous( rendezvous_name )
VBScript
Function lr.rendezvous( rendezvous_name )
| Runtime Functions |
Arguments
| Name | Comments |
|---|---|
| rendezvous_name | The name of the rendezvous. |
The lr.rendezvous function creates a rendezvous point in a Vuser script. When this statement is executed, the Vusers stop and wait for permission to continue.
The default timeout is 30 sec. The timeout is set in the scenario policy in the Controller.
This function can only be used in an action section, and not in vuser_init or vuser_end.
Return Values
This function always returns zero.
Parameterization
Standard parameterization is not available for this function.
VBScript Example
In the following example, the lr.rendezvous function sets the Meeting rendezvous point. When all users that belong to the Meeting rendezvous arrive at the rendezvous point, they continue simultaneously.
if ((rend_status= lr.rendezvous("Meeting")) != LR_REND_ALL_ARRIVED) lr.output_message("rendezvous unsuccessful" + rend_status);

