Last active
October 3, 2018 08:14
-
-
Save wispborne/4d905a0dac5ecf3210fa0a5135be1404 to your computer and use it in GitHub Desktop.
A class that encapsulates data, adding ability to know when the data has already been viewed. Useful for putting one-shot events, like "display dialog", into a State object that can be reapplied to a view.
This file contains 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
import java.util.concurrent.atomic.AtomicBoolean | |
/** | |
* Wraps some data that should track when it has been viewed and allow future viewers to avoid a second showing. | |
* Useful for showing messages in the app that auto-hide because this class can exist in the app's state. | |
*/ | |
data class ViewOnceData<T>(private val data: T) { | |
val wasViewed = AtomicBoolean(false) | |
/** | |
* Returns the data if it has not been viewed before and marks it as viewed. | |
* If it has been previously viewed, returns null. | |
*/ | |
fun getDataIfNotViewed(): T? { | |
return if (wasViewed.compareAndSet(false, true)) { | |
data | |
} else { | |
null | |
} | |
} | |
/** | |
* Returns the data regardless of viewed status. | |
*/ | |
fun peek() = data | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment