Skip to content

Commit 03b9bd1

Browse files
committed
Merge branch 'master' into develop
2 parents 18e3a4a + a97fd43 commit 03b9bd1

13 files changed

+210
-253
lines changed

docs/channels.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ChannelsGuideTest {
1919

2020
<!--- TOC -->
2121

22-
* [Channels (experimental)](#channels-experimental)
22+
* [Channels](#channels)
2323
* [Channel basics](#channel-basics)
2424
* [Closing and iteration over channels](#closing-and-iteration-over-channels)
2525
* [Building channel producers](#building-channel-producers)
@@ -33,15 +33,11 @@ class ChannelsGuideTest {
3333

3434
<!--- END_TOC -->
3535

36-
## Channels (experimental)
36+
## Channels
3737

3838
Deferred values provide a convenient way to transfer a single value between coroutines.
3939
Channels provide a way to transfer a stream of values.
4040

41-
> Channels are an experimental feature of `kotlinx.coroutines`. Their API is expected to
42-
evolve in the upcoming updates of the `kotlinx.coroutines` library with potentially
43-
breaking changes.
44-
4541
### Channel basics
4642

4743
A [Channel] is conceptually very similar to `BlockingQueue`. One key difference is that

0 commit comments

Comments
 (0)