I need to open an async file channel in a Netty handler. Do I need to do that on a background thread?
It seems logical that AsynchronousFileChannel's open() method would be a blocking operation but I am unable to find any confirmation.
I have googled this question extensively and tried to find the source but I think the answer is deep in some native code that is not widely available.
Thanks