You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2022/07/04 02:16:56 UTC

[GitHub] [rocketmq] Oliverwqcwrw commented on issue #4492: Can RocketMQ support KQueue on the mac platform?

Oliverwqcwrw commented on issue #4492:
URL: https://github.com/apache/rocketmq/issues/4492#issuecomment-1173265785

   I notice the jdk can return appropriate `SelectorProvider` 
   such as Mac
   
   > 
   public static Selector open() throws IOException {
           return SelectorProvider.provider().openSelector();
       }
   provider = sun.nio.ch.DefaultSelectorProvider.create();
   
   public static SelectorProvider create() {
           return new KQueueSelectorProvider();
       }
   
   and window can return WindowsSelectorProvider, so it is necessary whether  to adapt different platform @skasj @lizhanhui 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org