We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c033f05 + 8c2e850 commit 4849877Copy full SHA for 4849877
src/main/scala/org/learningconcurrency/ch3/Executors.scala
@@ -12,6 +12,8 @@ object ExecutorsCreate extends App {
12
executor.execute(new Runnable {
13
def run() = log("This task is run asynchronously.")
14
})
15
+
16
+ Thread.sleep(500)
17
}
18
19
0 commit comments