You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 30, 2019. It is now read-only.
Otto does not check inherited classes for methods which could be annotated with a @Subscribe annotation.
Example:
publicclassBaseClass{ @SubscribepublicvoidreceiveEvent(MyEvente){ /* ... */ } }
publicclassMainClassextendsBaseClass{ /* receiveEvent is not seen by register, even if register is called in BaseClass */ }
Use case for this is for a project I am working on, I want SnackBar notifications to appear on any activity when a certain event is received.