io.datawire.quark.runtime.AbstractHTTPHandler 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 abstract class AbstractHTTPHandler implements HTTPHandler {
@Override public void onHTTPInit(HTTPRequest request) {}
@Override public void onHTTPResponse(HTTPRequest request, HTTPResponse response) {}
@Override public void onHTTPError(HTTPRequest request, String message) {}
@Override public void onHTTPFinal(HTTPRequest request) {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy