Logo

Programming-Idioms

History of Idiom 45 > diff from v51 to v52

Edit summary for version 52 by programming-idioms.org:
Restored version 50

Version 51

2020-04-20, 18:20:24

Version 52

2020-04-20, 20:10:35

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Illustration

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Illustration
Code
TimeUnit.SECONDS.sleep(5)
Code
Thread.sleep(5000);
Comments bubble
Unit is millisecond