com.king.platform.net.http.SseClientCallbackAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of king-http-client Show documentation
Show all versions of king-http-client Show documentation
A asyncronous http client built ontop of netty.
package com.king.platform.net.http;
public interface SseClientCallbackAdapter extends SseClientCallback {
@Override
default void onConnect() {
}
@Override
default void onDisconnect() {
}
@Override
default void onError(Throwable throwable) {
}
@Override
default void onEvent(String lastSentId, String event, String data) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy