Skip to content

Commit

Permalink
Ensure waits can occur in parallel
Browse files Browse the repository at this point in the history
Fix: #25
  • Loading branch information
io7m committed Oct 14, 2024
1 parent 59d003c commit c81928b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ internal class Exfilac private constructor(
}

val waitExecutor =
Executors.newSingleThreadExecutor { r ->
Executors.newCachedThreadPool { r ->
val thread = Thread(r)
thread.priority = Thread.MIN_PRIORITY
thread.name = "com.io7m.exfilac.wait"
Expand Down

0 comments on commit c81928b

Please sign in to comment.