Skip to content

Instantly share code, notes, and snippets.

View insacc's full-sized avatar

Can Undeger insacc

  • Toronto
View GitHub Profile
@insacc
insacc / LiveBusSubscription.kt
Last active July 30, 2018 21:54
LiveBus subscription example
LiveBus.getInstance().subscribeLiveEvent("EVENT_TAG", EVENT_VALUE_CLASS_TYPE)
.observe(this, Observer {
it?.let {
// Process event
}
})
LiveBus.getInstance().subscribeSingleLiveEvent("EVENT_TAG", EVENT_VALUE_CLASS_TYPE)
.observe(this, Observer {
it?.let {
// Process event