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
There's also a small diagnostic issue in this class. The method checkReceptors() produces the following error:
"Policy `${javaClass.name}` handles too many events: [${classes.joinToString()}]."
This raises a question: “How many is too many?” It should be something like:
"The policy `${javaClass.name}` should react on only one event. Now it handles too many ({$classes.size}): [${classes.joinToString()}]. Please use only `whenever()` method for producing outcoming messages."
Now it says:
The signature is:
Logically, we can emit not only events, but commands too. It would be also good to bind it on the level of the method signature.
The text was updated successfully, but these errors were encountered: