Skip to main content
Browse topics

Channels in Kotlin

2 min read Updated June 30, 2026
Share

Introduction

Channels is a fundamental concept every Kotlin developer should understand. Advanced coroutine topics cover cancellation and channels for safe communication between concurrent tasks.

Channels pass values between coroutines in a producer-consumer pattern. In this tutorial you will learn the syntax, walk through a complete example program, study the sample output, and review best practices so you can apply the concept confidently in your own projects.

Definition

  • Channels pass values between coroutines in a producer-consumer pattern.
  • A Channel can be rendezvous, buffered, or unlimited depending on capacity.
  • Use channels when coroutines need to communicate streams of data safely.

Syntax

kotlin
val channel = Channel<Int>()
launch { channel.send(1) }
launch { println(channel.receive()) }

Channels in Kotlin Example Program in Kotlin

kotlin
import kotlinx.coroutines.*
import kotlinx.coroutines.channels.Channel

fun main() = runBlocking {
    val channel = Channel<Int>()
    launch {
        for (x in 1..3) {
            channel.send(x)
        }
        channel.close()
    }
    for (value in channel) {
        println("Received: $value")
    }
}

Sample Output

plaintext
Received: 1
Received: 2
Received: 3

When to use

Use cancellation when a screen closes or a request is aborted; use channels when coroutines must exchange a stream of values.

How it works

  1. The program starts with a main function — the entry point that runs when you execute the file.

  2. Channels pass values between coroutines in a producer-consumer pattern.

  3. Run the program in IntelliJ IDEA, Android Studio, or with the Kotlin command-line compiler (kotlinc / kotlin). Compare your console output with the sample output shown below.

Best Practices

Common Mistakes

Key Points

  • Channels pass values between coroutines in a producer-consumer pattern.
  • A Channel can be rendezvous, buffered, or unlimited depending on capacity.
  • Use channels when coroutines need to communicate streams of data safely.
  • Test the example locally and verify the output matches the sample.
  • Experiment by changing input values to see how behaviour changes.

Notes

  • Add the kotlinx-coroutines-core dependency when running coroutine examples outside Android or IntelliJ.
  • Semicolons at the end of statements are optional in Kotlin.

Frequently Asked Questions

What is Channels in Kotlin?
Channels pass values between coroutines in a producer-consumer pattern.
When should I use Channels?
Use cancellation when a screen closes or a request is aborted; use channels when coroutines must exchange a stream of values.
How is Channels different from Java?
Use channels when coroutines need to communicate streams of data safely.
How do I practice this topic?
Copy the example program into IntelliJ IDEA or Android Studio, run it, then modify values or add print statements to confirm your understanding.

Related tutorials

Search tutorials