org.butor.json.StreamHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of butor-json Show documentation
Show all versions of butor-json Show documentation
This module enables fast and easy creation of sync., async., req./resp., req./resp. stream HTTP/json services.
package org.butor.json;
import java.io.IOException;
import java.io.InputStream;
import org.butor.json.service.ResponseHandler;
public interface StreamHandler {
void parse(InputStream is, ResponseHandler handler, String loReqInfo) throws IOException;
}