``` private fun processStickyEvents() { EventBus...
# announcements
t
Copy code
private fun processStickyEvents() {
  EventBus.getDefault().apply {
    getStickEvent<AccountsSelectEvent>()?.let { ... } //With reified generics on the function
    ...
  }
}