You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Improve MainCoroutineDispatcher.immediate documentation
* Remove obsolete readme and package descriptions
* Clarify possible replacement of onCompletion parameter in produce
* Add paragraph about parent cancellation to async (Mention structured concurrency, but do not explain it there as the term should be easily googlable).
Fixes#1219Fixes#994Fixes#787
Copy file name to clipboardExpand all lines: kotlinx-coroutines-core/common/README.md
+1-11
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Module kotlinx-coroutines-core
2
2
3
-
Core primitives to work with coroutines.
3
+
Core primitives to work with coroutines available on all platforms.
4
4
5
5
Coroutine builder functions:
6
6
@@ -10,7 +10,6 @@ Coroutine builder functions:
10
10
| [async] | [Deferred] | [CoroutineScope] | Returns a single value with the future result
11
11
| [produce][kotlinx.coroutines.channels.produce] | [ReceiveChannel][kotlinx.coroutines.channels.ReceiveChannel] | [ProducerScope][kotlinx.coroutines.channels.ProducerScope] | Produces a stream of elements
12
12
| [actor][kotlinx.coroutines.channels.actor] | [SendChannel][kotlinx.coroutines.channels.SendChannel] | [ActorScope][kotlinx.coroutines.channels.ActorScope] | Processes a stream of messages
13
-
| [runBlocking] | `T` | [CoroutineScope] | Blocks the thread while the coroutine runs
0 commit comments