|
|
|
|
|
by latch
334 days ago
|
|
I think having a thread pool on top of some evented IO isn't _that_ uncommon. You might have a thread pool doing some very specific thing. You can do your own threadpool which wont use the Io interface. But if one of the tasks in the threadpool wanted to read a file, I guess you'd have to pass in the blocking Io implementation. |
|