Skip to content
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

Consider CoroutineScope.cancel(String, Throwable?) #1338

Closed
fvasco opened this issue Jul 15, 2019 · 0 comments
Closed

Consider CoroutineScope.cancel(String, Throwable?) #1338

fvasco opened this issue Jul 15, 2019 · 0 comments

Comments

@fvasco
Copy link
Contributor

fvasco commented Jul 15, 2019

This is a simple extension, I found verbose to write cancel(CancellationException("socket closed", ioException))

So I propose to consider something like cancel("socket closed", ioException)

public inline fun CoroutineScope.cancel(description: String, cause: Throwable? = null) {
    cancel(CancellationException(description, cause))
}

This function is similar to deprecated: cancel(Trowable?)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants