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 has been 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.
The text was updated successfully, but these errors were encountered:
I managed to work around it for now (using a manager class per activity for the bus), but thanks anyway I assume this is so that it isn't slowing things down too much.
Otto does not check inherited classes for methods which could be annotated with a
@Subscribe
annotation.Example:
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.
The text was updated successfully, but these errors were encountered: