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
In the above case, Post to Subscribe connection would work. But Subscribe to Post connection doesn't. We first need to find the usages of Type.. and from that find out the usages were Type is a return type of a Method. Then take those methods and find usages for those and then filter out all the cases where the method is used as a ValueArgument of post method. This will establish the connection.
The text was updated successfully, but these errors were encountered:
fun getMethod() : Type = Unit
bus.post(getMethod())
In the above case, Post to Subscribe connection would work. But Subscribe to Post connection doesn't. We first need to find the usages of
Type
.. and from that find out the usages were Type is a return type of a Method. Then take those methods and find usages for those and then filter out all the cases where the method is used as a ValueArgument ofpost
method. This will establish the connection.The text was updated successfully, but these errors were encountered: