Skip to content

Commit

Permalink
Remove experimental warning from Channels docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dector authored and qwwdfsad committed Jun 6, 2019
1 parent d94652f commit a97fd43
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions docs/channels.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ChannelsGuideTest {

<!--- TOC -->

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

<!--- END_TOC -->

## Channels (experimental)
## Channels

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

> Channels are an experimental feature of `kotlinx.coroutines`. Their API is expected to
evolve in the upcoming updates of the `kotlinx.coroutines` library with potentially
breaking changes.

### Channel basics

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

0 comments on commit a97fd43

Please sign in to comment.