Question regarding AsynchronousSocketChannel.write method
public final <A> void write(ByteBuffer src,
A attachment,
CompletionHandler<Integer,? super A> handler)
Does this method guarantee ACK is received before the handler
is fired?
Or it just ensures the ByteBuffer
is delivered to network driver of local machine?