Package kotlinx.coroutines.experimental.channels
Platform and version requirements: JVM
Channels – non-blocking primitives for communicating a stream of elements between coroutines.
Types
abstract class AbstractChannel<E> : Abstract send/receive channel. It is a base class for all channel implementations. |
|
abstract class AbstractSendChannel<E> : SendChannel<E> Abstract send channel. It is a base class for all send channel implementations. |
|
interface ActorScope<E> : CoroutineScope, ReceiveChannel<E> Scope for actor coroutine builder. |
|
class ArrayBroadcastChannel<E> : Broadcast channel with array buffer of a fixed capacity. Sender suspends only when buffer is full due to one of the receives being slow to consume and receiver suspends only when buffer is empty. |
|
open class ArrayChannel<E> : AbstractChannel<E> Channel with array buffer of a fixed capacity. Sender suspends only when buffer is fully and receiver suspends only when buffer is empty. |
|
interface BroadcastChannel<E> : SendChannel<E> Broadcast channel is a non-blocking primitive for communication between the sender and multiple receivers that subscribe for the elements using openSubscription function and unsubscribe using SubscriptionReceiveChannel.close function. |
|
interface Channel<E> : SendChannel<E>, ReceiveChannel<E> Channel is a non-blocking primitive for communication between sender using SendChannel and receiver using ReceiveChannel. Conceptually, a channel is similar to BlockingQueue, but it has suspending operations instead of blocking ones and it can be closed. |
|
interface ChannelIterator<out E> Iterator for ReceiveChannel. Instances of this interface are not thread-safe and shall not be used from concurrent coroutines. |
|
class ConflatedBroadcastChannel<E> : BroadcastChannel<E> Broadcasts the most recently sent element (aka value) to all openSubscription subscribers. |
|
open class ConflatedChannel<E> : AbstractChannel<E> Channel that buffers at most one element and conflates all subsequent |
|
open class LinkedListChannel<E> : AbstractChannel<E> Channel with linked-list buffer of a unlimited capacity (limited only by available memory).
Sender to this channel never suspends and offer always returns |
|
interface ProducerScope<in E> : Scope for produce coroutine builder. |
|
interface ReceiveChannel<out E> Receiver’s interface to Channel. |
|
open class RendezvousChannel<E> : AbstractChannel<E> Rendezvous channel. This channel does not have any buffer at all. An element is transferred from sender to receiver only when send and receive invocations meet in time (rendezvous), so send suspends until another coroutine invokes receive and receive suspends until another coroutine invokes send. |
|
interface SendChannel<in E> Sender’s interface to Channel. |
|
interface SubscriptionReceiveChannel<out T> : Return type for BroadcastChannel.openSubscription that can be used to receive elements from the open subscription and to close it to unsubscribe. |
Exceptions
class ClosedReceiveChannelException : NoSuchElementException Indicates attempt to receive on isClosedForReceive channel that was closed without a cause. A failed channel rethrows the original close cause exception on receive attempts. |
|
class ClosedSendChannelException : CancellationException Indicates attempt to send on isClosedForSend channel that was closed without a cause. A failed channel rethrows the original close cause exception on send attempts. |
Extensions for External Classes
Functions
fun <E> BroadcastChannel(capacity: Int): BroadcastChannel<E> Creates a broadcast channel with the specified buffer capacity. |
|
Creates a channel without a buffer – RendezvousChannel. Creates a channel with the specified buffer capacity (or without a buffer by default). |
|
fun <E> actor( Launches new coroutine that is receiving messages from its mailbox channel and returns a reference to its mailbox channel as a SendChannel. The resulting object can be used to send messages to this coroutine. |
|
suspend fun <E> ReceiveChannel<E>.all( Returns |
|
suspend fun <E> ReceiveChannel<E>.any(): Boolean Returns suspend fun <E> ReceiveChannel<E>.any( Returns |
|
Returns a Map containing key-value pairs provided by transform function applied to elements of the given channel. |
|
Returns a Map containing the elements from the given channel indexed by the key returned from keySelector function applied to each element. suspend fun <E, K, V> ReceiveChannel<E>.associateBy( Returns a Map containing the values provided by valueTransform and indexed by keySelector functions applied to elements of the given channel. |
|
suspend fun <E, K, M : MutableMap<in K, in E>> ReceiveChannel<E>.associateByTo( Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function applied to each element of the given channel and value is the element itself. suspend fun <E, K, V, M : MutableMap<in K, in V>> ReceiveChannel<E>.associateByTo( Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function and and value is provided by the valueTransform function applied to elements of the given channel. |
|
suspend fun <E, K, V, M : MutableMap<in K, in V>> ReceiveChannel<E>.associateTo( Populates and returns the destination mutable map with key-value pairs provided by transform function applied to each element of the given channel. |
|
fun <E, R> BroadcastChannel<E>.consume( Opens subscription to this BroadcastChannel and makes sure that the given block consumes all elements from it by always invoking cancel after the execution of the block. fun <E, R> ReceiveChannel<E>.consume( Makes sure that the given block consumes all elements from the given channel by always invoking cancel after the execution of the block. |
|
suspend fun <E> BroadcastChannel<E>.consumeEach( Subscribes to this BroadcastChannel and performs the specified action for each received element. suspend fun <E> ReceiveChannel<E>.consumeEach( Performs the given action for each received element. |
|
suspend fun <E> ReceiveChannel<E>.consumeEachIndexed( Performs the given action for each received element. |
|
suspend fun <E> ReceiveChannel<E>.count(): Int Returns the number of elements in this channel. suspend fun <E> ReceiveChannel<E>.count( Returns the number of elements matching the given predicate. |
|
fun <E> ReceiveChannel<E>.distinct(): ReceiveChannel<E> Returns a channel containing only distinct elements from the given channel. |
|
fun <E, K> ReceiveChannel<E>.distinctBy( Returns a channel containing only elements from the given channel having distinct keys returned by the given selector function. |
|
fun <E> ReceiveChannel<E>.drop( Returns a channel containing all elements except first n elements. |
|
fun <E> ReceiveChannel<E>.dropWhile( Returns a channel containing all elements except first elements that satisfy the given predicate. |
|
suspend fun <E> ReceiveChannel<E>.elementAt(index: Int): E Returns an element at the given index or throws an IndexOutOfBoundsException if the index is out of bounds of this channel. |
|
Returns an element at the given index or the result of calling the defaultValue function if the index is out of bounds of this channel. |
|
suspend fun <E> ReceiveChannel<E>.elementAtOrNull( Returns an element at the given index or |
|
fun <E> ReceiveChannel<E>.filter( Returns a channel containing only elements matching the given predicate. |
|
fun <E> ReceiveChannel<E>.filterIndexed( Returns a channel containing only elements matching the given predicate. |
|
suspend fun <E, C : MutableCollection<in E>> ReceiveChannel<E>.filterIndexedTo( Appends all elements matching the given predicate to the given destination. |
|
fun <E> ReceiveChannel<E>.filterNot( Returns a channel containing all elements not matching the given predicate. |
|
fun <E : Any> ReceiveChannel<E?>.filterNotNull(): ReceiveChannel<E> Returns a channel containing all elements that are not |
|
suspend fun <E : Any, C : MutableCollection<in E>> ReceiveChannel<E?>.filterNotNullTo( Appends all elements that are not |
|
suspend fun <E, C : MutableCollection<in E>> ReceiveChannel<E>.filterNotTo( Appends all elements not matching the given predicate to the given destination. |
|
suspend fun <E, C : MutableCollection<in E>> ReceiveChannel<E>.filterTo( Appends all elements matching the given predicate to the given destination. |
|
suspend fun <E> ReceiveChannel<E>.find( Returns the first element matching the given predicate, or |
|
suspend fun <E> ReceiveChannel<E>.findLast( Returns the last element matching the given predicate, or |
|
suspend fun <E> ReceiveChannel<E>.first(): E Returns first element. suspend fun <E> ReceiveChannel<E>.first( Returns the first element matching the given predicate. |
|
suspend fun <E> ReceiveChannel<E>.firstOrNull(): E? Returns the first element, or suspend fun <E> ReceiveChannel<E>.firstOrNull( Returns the first element matching the given predicate, or |
|
fun <E, R> ReceiveChannel<E>.flatMap( Returns a single channel of all elements from results of transform function being invoked on each element of original channel. |
|
Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element. |
|
suspend fun <E, R> ReceiveChannel<E>.foldIndexed( Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element with its index in the original channel. |
|
Groups elements of the original channel by the key returned by the given keySelector function applied to each element and returns a map where each group key is associated with a list of corresponding elements. suspend fun <E, K, V> ReceiveChannel<E>.groupBy( Groups values returned by the valueTransform function applied to each element of the original channel by the key returned by the given keySelector function applied to the element and returns a map where each group key is associated with a list of corresponding values. |
|
suspend fun <E, K, M : MutableMap<in K, MutableList<E>>> ReceiveChannel<E>.groupByTo( Groups elements of the original channel by the key returned by the given keySelector function applied to each element and puts to the destination map each group key associated with a list of corresponding elements. suspend fun <E, K, V, M : MutableMap<in K, MutableList<V>>> ReceiveChannel<E>.groupByTo( Groups values returned by the valueTransform function applied to each element of the original channel by the key returned by the given keySelector function applied to the element and puts to the destination map each group key associated with a list of corresponding values. |
|
suspend fun <E> ReceiveChannel<E>.indexOf(element: E): Int Returns first index of element, or -1 if the channel does not contain element. |
|
suspend fun <E> ReceiveChannel<E>.indexOfFirst( Returns index of the first element matching the given predicate, or -1 if the channel does not contain such element. |
|
suspend fun <E> ReceiveChannel<E>.indexOfLast( Returns index of the last element matching the given predicate, or -1 if the channel does not contain such element. |
|
suspend fun <E> ReceiveChannel<E>.last(): E Returns the last element. suspend fun <E> ReceiveChannel<E>.last( Returns the last element matching the given predicate. |
|
suspend fun <E> ReceiveChannel<E>.lastIndexOf( Returns last index of element, or -1 if the channel does not contain element. |
|
suspend fun <E> ReceiveChannel<E>.lastOrNull(): E? Returns the last element, or suspend fun <E> ReceiveChannel<E>.lastOrNull( Returns the last element matching the given predicate, or |
|
fun <E, R> ReceiveChannel<E>.map( Returns a channel containing the results of applying the given transform function to each element in the original channel. |
|
fun <E, R> ReceiveChannel<E>.mapIndexed( Returns a channel containing the results of applying the given transform function to each element and its index in the original channel. |
|
fun <E, R : Any> ReceiveChannel<E>.mapIndexedNotNull( Returns a channel containing only the non-null results of applying the given transform function to each element and its index in the original channel. |
|
suspend fun <E, R : Any, C : MutableCollection<in R>> ReceiveChannel<E>.mapIndexedNotNullTo( Applies the given transform function to each element and its index in the original channel and appends only the non-null results to the given destination. |
|
suspend fun <E, R, C : MutableCollection<in R>> ReceiveChannel<E>.mapIndexedTo( Applies the given transform function to each element and its index in the original channel and appends the results to the given destination. |
|
fun <E, R : Any> ReceiveChannel<E>.mapNotNull( Returns a channel containing only the non-null results of applying the given transform function to each element in the original channel. |
|
suspend fun <E, R : Any, C : MutableCollection<in R>> ReceiveChannel<E>.mapNotNullTo( Applies the given transform function to each element in the original channel and appends only the non-null results to the given destination. |
|
suspend fun <E, R, C : MutableCollection<in R>> ReceiveChannel<E>.mapTo( Applies the given transform function to each element of the original channel and appends the results to the given destination. |
|
suspend fun <E, R : Comparable<R>> ReceiveChannel<E>.maxBy( Returns the first element yielding the largest value of the given function or |
|
suspend fun <E> ReceiveChannel<E>.maxWith( Returns the first element having the largest value according to the provided comparator or |
|
suspend fun <E, R : Comparable<R>> ReceiveChannel<E>.minBy( Returns the first element yielding the smallest value of the given function or |
|
suspend fun <E> ReceiveChannel<E>.minWith( Returns the first element having the smallest value according to the provided comparator or |
|
suspend fun <E> ReceiveChannel<E>.none(): Boolean Returns suspend fun <E> ReceiveChannel<E>.none( Returns |
|
Splits the original channel into pair of lists,
where first list contains elements for which predicate yielded |
|
fun <E> produce( Launches new coroutine to produce a stream of values by sending them to a channel and returns a reference to the coroutine as a ReceiveChannel. This resulting object can be used to receive elements produced by this coroutine. |
|
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element. |
|
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element with its index in the original channel. |
|
fun <E : Any> ReceiveChannel<E?>.requireNoNulls(): ReceiveChannel<E> Returns an original collection containing all the non- |
|
fun <E> SendChannel<E>.sendBlocking(element: E): Unit Adds element into to this channel, blocking the caller while this channel Channel.isFull, or throws exception if the channel Channel.isClosedForSend (see Channel.close for details). |
|
suspend fun <E> ReceiveChannel<E>.single(): E Returns the single element, or throws an exception if the channel is empty or has more than one element. suspend fun <E> ReceiveChannel<E>.single( Returns the single element matching the given predicate, or throws exception if there is no or more than one matching element. |
|
suspend fun <E> ReceiveChannel<E>.singleOrNull(): E? Returns single element, or suspend fun <E> ReceiveChannel<E>.singleOrNull( Returns the single element matching the given predicate, or |
|
suspend fun <E> ReceiveChannel<E>.sumBy( Returns the sum of all values produced by selector function applied to each element in the channel. |
|
suspend fun <E> ReceiveChannel<E>.sumByDouble( Returns the sum of all values produced by selector function applied to each element in the channel. |
|
fun <E> ReceiveChannel<E>.take( Returns a channel containing first n elements. |
|
fun <E> ReceiveChannel<E>.takeWhile( Returns a channel containing first elements satisfying the given predicate. |
|
suspend fun <E, C : SendChannel<E>> ReceiveChannel<E>.toChannel( Send each element of the original channel and appends the results to the given destination. |
|
suspend fun <E, C : MutableCollection<in E>> ReceiveChannel<E>.toCollection( Appends all elements to the given destination collection. |
|
suspend fun <E> ReceiveChannel<E>.toList(): List<E> Returns a List containing all elements. |
|
Returns a Map filled with all elements of this channel. suspend fun <K, V, M : MutableMap<in K, in V>> ReceiveChannel<Pair<K, V>>.toMap( Returns a MutableMap filled with all elements of this channel. |
|
suspend fun <E> ReceiveChannel<E>.toMutableList(): MutableList<E> Returns a MutableList filled with all elements of this channel. |
|
suspend fun <E> ReceiveChannel<E>.toMutableSet(): MutableSet<E> Returns a mutable set containing all distinct elements from the given channel. |
|
suspend fun <E> ReceiveChannel<E>.toSet(): Set<E> Returns a Set of all elements. |
|
fun <E> ReceiveChannel<E>.withIndex( Returns a channel of IndexedValue for each element of the original channel. |
|
infix fun <E, R> ReceiveChannel<E>.zip( Returns a channel of pairs built from elements of both channels with same indexes. Resulting channel has length of shortest input channel. fun <E, R, V> ReceiveChannel<E>.zip( Returns a channel of values built from elements of both collections with same indexes using provided transform. Resulting channel has length of shortest input channels. |