Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a util method to warm up
EventLoopGroup
(#3610)
Motivation: Netty's event loop threads are spawned lazily, i.e. they are created on the first task is scheduled on. A user sometimes wants to ensure the event loop threads are started when the server starts up. Modifications: - Add `EventLoopGroups.warmUp()` Result: - Closes #3363
- Loading branch information