eventbus-plugin
eventbus-plugin copied to clipboard
IntelliJ iDEA plugin to work with projects using greenrobot's EventBus library
Throws an error message: "not compatible with the current version of the IDE, because it requires build 213.* or older" Would be great if you had the time to look...
`fun getMethod() : Type = Unit` `bus.post(getMethod())` ``` @Subscribe fun subcribe(type: Type) { } ``` In the above case, Post to Subscribe connection would work. But Subscribe to Post connection...
Different cases: 1. Post(subType) -> Subscribe(superType) 2. Post(getSuperType()) -> Subscribe(subType) {where getSuperType() returns superType, but the concrete implementation returned is subType} In the first case, we need to ensure both...