Spring for Android

org.springframework.http
Interface StreamingHttpOutputMessage

All Superinterfaces:
HttpMessage, HttpOutputMessage

public interface StreamingHttpOutputMessage
extends HttpOutputMessage

Represents a HTTP output message that allows for setting a streaming body.

Since:
2.0
Author:
Arjen Poutsma

Nested Class Summary
static interface StreamingHttpOutputMessage.Body
          Defines the contract for bodies that can be written directly to a OutputStream.
 
Method Summary
 void setBody(StreamingHttpOutputMessage.Body body)
          Sets the streaming body for this message.
 
Methods inherited from interface org.springframework.http.HttpOutputMessage
getBody
 
Methods inherited from interface org.springframework.http.HttpMessage
getHeaders
 

Method Detail

setBody

void setBody(StreamingHttpOutputMessage.Body body)
Sets the streaming body for this message.

Parameters:
body - the streaming body

Spring for Android