NIOEventLoopGroupProvider
Deprecated.
enum NIOEventLoopGroupProvider
This type was intended to be used by libraries which use NIO, and offer their users either the option to .share
an existing event loop group or create (and manage) a new one (.createNew
) and let it be managed by given library and its lifecycle.
Please use a group: any EventLoopGroup
parameter instead. If you want to default to a global singleton group instead, consider group: any EventLoopGroup = MultiThreadedEventLoopGroup.singleton` or similar.