Created
December 28, 2020 17:13
-
-
Save paulocoutinhox/4d6dd66b983ab4a0bd63f0a11538ba23 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Returns true when [Context] is unavailable or is about to become unavailable | |
*/ | |
fun Context?.isDoomed(): Boolean = when (this) { | |
null -> true | |
is Application -> false | |
is Activity -> (this.isDestroyed or this.isFinishing) | |
else -> false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment