An AsyncSocket represents a asynchronous socket.
Users of AsyncSocket are expected to be familiar with java.net.Socket as many of the method of are taken directly fromSocket. We will not refer to any of these similar methods in detail but merely refer to the Javadoc of AsyncSocket and Socket. Finally, manipulation of socket options must be performed on the Socket object available by calling socket().
Opening an AsyncSocket
There are four different ways to open an AsyncSocket as explained in the 5 minute introduction
Standard mode
Offerable mode
Queue mode
Callback mode
Other methods
Check out the description of AsyncDatagram its very similar.
