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

org.nustaq.kontraktor.remoting.http.KHttpExchange Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
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