
co.cask.http.BodyConsumer Maven / Gradle / Ivy
/*
* Copyright © 2014 Cask Data, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package co.cask.http;
import org.jboss.netty.buffer.ChannelBuffer;
/**
* HttpHandler would extend this abstract class and implement methods to stream the body directly.
* chunk method would receive the http-chunks of the body and finished would be called
* on receipt of the last chunk.
*/
public abstract class BodyConsumer {
/**
* Http request content will be streamed directly to this method.
* @param request
* @param responder
*/
public abstract void chunk(ChannelBuffer request, HttpResponder responder);
/**
* This is called on the receipt of the last HttpChunk.
* @param responder
*/
public abstract void finished(HttpResponder responder);
/**
* When there is exception on netty while streaming, it will be propagated to handler
* so the handler can do the cleanup. Implementations should not write to an HttpResponder.
* Instead, use a {@link ExceptionHandler}.
* @param cause
*/
public abstract void handleError(Throwable cause);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy