EventLoopGroupProvider
public enum EventLoopGroupProvider
Specifies how EventLoopGroup will be created and establishes lifecycle ownership.
-
EventLoopGroupwill be provided by the user. Owner of this group is responsible for its lifecycle.Declaration
Swift
case shared(EventLoopGroup) -
EventLoopGroupwill be created by the client. WhensyncShutdownis called, createdEventLoopGroupwill be shut down as well.Declaration
Swift
case useAWSClientShared
View on GitHub
EventLoopGroupProvider Enumeration Reference