Skip to content

Instantly share code, notes, and snippets.

View hwd6190128's full-sized avatar
🏠
Working from home

Chang Hung Lun hwd6190128

🏠
Working from home
View GitHub Profile
@hwd6190128
hwd6190128 / Event.kt
Created December 9, 2020 10:29 — forked from JoseAlcerreca/Event.kt
An event wrapper for data that is exposed via a LiveData that represents an event.
/**
* Used as a wrapper for data that is exposed via a LiveData that represents an event.
*/
open class Event<out T>(private val content: T) {
var hasBeenHandled = false
private set // Allow external read but not write
/**
* Returns the content and prevents its use again.