tipsy
03/18/2018, 9:08 AM@OnWebSocketClose
fun onClose(session: Session, statusCode: Int, reason: String) = ...
which doesn't fire, but if i create a java-file with the decompiled bytecode:
@OnWebSocketClose
public final void onClose(@NotNull Session session, int statusCode, @NotNull String reason) {
...
}
everything works as expected