-
Notifications
You must be signed in to change notification settings - Fork 19
PrioritizeEvent
DaanVanYperen edited this page Sep 15, 2014
·
1 revision
@Subscribe
annotations are called from high to low priority.
@Subscribe(priority=1000)
public void iHavePriority( MyEvent event ) { .. }
@Subscribe(priority=-1000)
public void imCalledAfter( MyEvent event ) { .. }