Extensions for java.nio.channels.AsynchronousSocketChannel
suspend fun AsynchronousSocketChannel.aConnect( Performs AsynchronousSocketChannel.connect without blocking a thread and resumes when asynchronous operation completes. This suspending function is cancellable. If the Job of the current coroutine is cancelled or completed while this suspending function is waiting, this function closes the underlying channel and immediately resumes with CancellationException. |
|
suspend fun AsynchronousSocketChannel.aRead( Performs AsynchronousSocketChannel.read without blocking a thread and resumes when asynchronous operation completes. This suspending function is cancellable. If the Job of the current coroutine is cancelled or completed while this suspending function is waiting, this function closes the underlying channel and immediately resumes with CancellationException. |
|
suspend fun AsynchronousSocketChannel.aWrite( Performs AsynchronousSocketChannel.write without blocking a thread and resumes when asynchronous operation completes. This suspending function is cancellable. If the Job of the current coroutine is cancelled or completed while this suspending function is waiting, this function closes the underlying channel and immediately resumes with CancellationException. |