I've had this kind of situation: java interface de...
# announcements
w
I've had this kind of situation: java interface defined for RPC, and kotlin implementation on the server. If we have overloading methods (same name) in the java interface, when one of two methods was called, the implementation kotlin chose could be wrong. kotlin might choose the wrong overloading method impl. I cannot reproduce it in a simplified code. The complete code, I can't give it out. So I can't file an issue. Anyone has met this situation before? I've met this two times. Doesn't matter if it's RPC or not. Java inteface with overloading methods and kotlin impl.