org.nustaq.kontraktor.remoting.http.KHttpExchange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kontraktor-http Show documentation
Show all versions of kontraktor-http Show documentation
http connectivity for kontraktor
package org.nustaq.kontraktor.remoting.http;
/**
* Created by ruedi on 19.06.17.
*
* wrapper to encapsulate server specific http implementation/behaviour
*
*/
public interface KHttpExchange {
void endExchange();
void setResponseContentLength(int length);
void setResponseCode(int i);
void send(String s);
void send(byte[] b);
void sendAuthResponse(byte[] response, String sessionId);
default String getPath() {
return null;
};
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy