Example: lr.think_time
In the following segment, lr.think_time instructs the script to pause for 1 second before printing the Vuser ID string.
public int action() { lr.start_transaction("test"); lr.think_time(1); outstr.println("vuser: " + lr.get_vuser_id() + " xxx"); lr.message("Action"); lr.end_transaction("test", lr.PASS); return 0; }