Skip to content

Undeprecate Channel.receiveOrNull #739

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions common/kotlinx-coroutines-core-common/src/channels/Channel.kt
Original file line number Diff line number Diff line change
Expand Up @@ -206,14 +206,7 @@ public interface ReceiveChannel<out E> {
*
* This function can be used in [select] invocation with [onReceiveOrNull] clause.
* Use [poll] to try receiving from this channel without waiting.
*
* **Note: This is an obsolete api.**
* This function will be replaced with `receiveOrClosed: ReceiveResult<E>` and
* extension `suspend fun <E: Any> ReceiveChannel<E>.receiveOrNull(): E?`
*/
@ExperimentalCoroutinesApi
@ObsoleteCoroutinesApi
@Deprecated(level = DeprecationLevel.WARNING, message = "This method does not distinguish closed channel and null elements")
public suspend fun receiveOrNull(): E?

/**
Expand Down