funcmike / rabbitmq-nio

A Swift implementation of AMQP 0.9.1 protocol: decoder + encoder and non-blocking client
Apache License 2.0
44 stars 8 forks source link

Do not depend on the NIO module directly #4

Closed fabianfett closed 1 year ago

fabianfett commented 1 year ago

The NIO module is an umbrella module that we should not be used anymore. Instead import NIOCore, NIOPosix and NIOEmbedded explicitly where needed.

Find a more detailed explanation here:

https://gitlab.com/swift-server-community/RediStack/-/merge_requests/186#note_1191177599

funcmike commented 1 year ago

done