-
- All Implemented Interfaces:
-
kotlinx.coroutines.channels.SendChannel
public interface SendChannel<E extends Object> implements SendChannel<E>
SendChannel is a KotlinxCoroutinesSendChannel plus sendSync and sendAsync which enables idiomatic usage from Java code.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classSendChannel.Companion
-
Method Summary
-
-
Method Detail
-
sendAsync
CompletableFuture<Unit> sendAsync(E element)
Asynchronously send the element to this channel.
-
getIsClosedForSend
abstract Boolean getIsClosedForSend()
-
-
-
-