All Downloads are FREE. Search and download functionalities are using the official Maven repository.

water.webserver.iface.WebsocketHandler Maven / Gradle / Ivy

Go to download

Interface module isolating H2O functionality from specific HTTP server implementation. Exposes facade that needs to have exactly one implementation on runtime classpath.

The newest version!
package water.webserver.iface;

public interface WebsocketHandler {

    void onClose(WebsocketConnection connection);

    void onMessage(String message);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy