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

org.zodiac.sdk.nio.channeling.http.HttpStreamRequestCallback Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.sdk.nio.channeling.http;

import org.zodiac.sdk.nio.channeling.ChannelingSocket;


public interface HttpStreamRequestCallback {
    void headerAccept(byte[] chunked, int offset, int length, ChannelingSocket socket) throws Exception;
//    void headerEnd(byte[] chunked, int offset, int length, ChannelingSocket socket) throws Exception;
    void accept(byte[] chunked, int offset, int length, ChannelingSocket socket);
    void last(byte[] chunked, int offset, int length, ChannelingSocket socket);
    void error(Exception e, ChannelingSocket socket);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy