Connecting To Iocp Server In Java (android)
I'd like to make an Online Game with Android. I'm planning to make Server with IOCP model via C++. This should work fine, the problem is the client. IOCP client example in C++ uses
Solution 1:
The JDK 7 Windows implementation of the Java 7 "NIO.2" classes
AsynchronousServerSocketChannel
call the WSA[...] functions of the Windows "Overlapped IO" API behind the scenes.
For more in-depth information check out the OpenJDK repository folders containing the implementation .java sources along with their corresponding .c native sources and JNI bindings .
Post a Comment for "Connecting To Iocp Server In Java (android)"