channel
abstract val channel: SendChannel<E>
(source)Platform and version requirements: JVM
A reference to the channel that this coroutine sends elements to.
It is provided for convenience, so that the code in the coroutine can refer
to the channel as channel
as apposed to this
.
All the SendChannel functions on this interface delegate to
the channel instance returned by this function.