io.datawire.quark.runtime.WSHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quark-core Show documentation
Show all versions of quark-core Show documentation
Quark compiler generates code against this runtime api
package io.datawire.quark.runtime;
public interface WSHandler {
void onWSInit(WebSocket socket);
void onWSConnected(WebSocket socket);
void onWSMessage(WebSocket socket, String message);
void onWSBinary(WebSocket socket, Buffer message);
void onWSClosed(WebSocket socket);
void onWSError(WebSocket socket);
void onWSFinal(WebSocket socket);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy