File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
kotlinx-coroutines-nio/src/main/kotlin/kotlinx/coroutines/experimental/nio Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ suspend fun AsynchronousServerSocketChannel.aAccept() = suspendCancellableCorout
91
91
}
92
92
93
93
/* *
94
- * Performs [AsynchronousServerSocketChannel .connect] without blocking a thread and resumes when asynchronous operation completes.
94
+ * Performs [AsynchronousSocketChannel .connect] without blocking a thread and resumes when asynchronous operation completes.
95
95
* This suspending function is cancellable.
96
96
* If the [Job] of the current coroutine is completed while this suspending function is suspended, this function
97
97
* *closes the underlying channel* and immediately resumes with [CancellationException].
@@ -104,7 +104,7 @@ suspend fun AsynchronousSocketChannel.aConnect(
104
104
}
105
105
106
106
/* *
107
- * Performs [AsynchronousServerSocketChannel .read] without blocking a thread and resumes when asynchronous operation completes.
107
+ * Performs [AsynchronousSocketChannel .read] without blocking a thread and resumes when asynchronous operation completes.
108
108
* This suspending function is cancellable.
109
109
* If the [Job] of the current coroutine is completed while this suspending function is suspended, this function
110
110
* *closes the underlying channel* and immediately resumes with [CancellationException].
@@ -119,7 +119,7 @@ suspend fun AsynchronousSocketChannel.aRead(
119
119
}
120
120
121
121
/* *
122
- * Performs [AsynchronousServerSocketChannel .write] without blocking a thread and resumes when asynchronous operation completes.
122
+ * Performs [AsynchronousSocketChannel .write] without blocking a thread and resumes when asynchronous operation completes.
123
123
* This suspending function is cancellable.
124
124
* If the [Job] of the current coroutine is completed while this suspending function is suspended, this function
125
125
* *closes the underlying channel* and immediately resumes with [CancellationException].
You can’t perform that action at this time.
0 commit comments