GetSmoothArrivalRate Function

Action

Retrieves the current setting that determines whether each virtual user is forced to perform all transactions within the specified simulation interval.

Include file

Kernel.bdh

Syntax

GetSmoothArrivalRate(): boolean;

Return value

  • true if each virtual user is currently forced to perform all transactions within the specified simulation interval

  • false otherwise

Example

dcltrans
transaction TMain
begin
write ("transaction arrival rate: ");
if GetSmoothArrivalRate() then
writeln("smooth");
else
writeln("randomly distributed");
end;
end TMain;