Retrieves the current setting that determines whether each virtual user is forced to perform all transactions within the specified simulation interval.
Kernel.bdh
GetSmoothArrivalRate(): boolean;
true if each virtual user is currently forced to perform all transactions within the specified simulation interval
false otherwise
dcltrans transaction TMain begin write ("transaction arrival rate: "); if GetSmoothArrivalRate() then writeln("smooth"); else writeln("randomly distributed"); end; end TMain;