org.zodiac.sdk.nio.channeling.http.ResponseCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zodiac-sdk-nio Show documentation
Show all versions of zodiac-sdk-nio Show documentation
Zodiac SDK NIO2(New Non-Blocking IO)
package org.zodiac.sdk.nio.channeling.http;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import org.zodiac.sdk.nio.channeling.Then;
public interface ResponseCallback {
void write(HttpResponseMessage responseMessage, Charset charset, Then $then);
void streamWrite(ByteBuffer byteBuffer, Then $then);
// void flush();
}