ThinkTimes and Wait

Be careful with wait statements. Think-times are ignored. A monitoring transaction must be executed within a given interval. Wait statements block execution and transactions may not return on time.

Example

// Forbidden
transaction TSnap
begin
  wait 500000.0;
end TSnap;