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 WSASyncselect
or WSAEventSelect
.
I couldn't find any Java examples that same work like async socket.
Questions:
- Is there anything like
WSASyncselect()
in Java? - If not that, how could i do it?