Package 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. Note that such messages typically do not supportHttpOutputMessage.getBody()access.- Since:
- 4.0
- Author:
- Arjen Poutsma
- See Also:
setBody(org.springframework.http.StreamingHttpOutputMessage.Body)
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceStreamingHttpOutputMessage.BodyDefines the contract for bodies that can be written directly to anOutputStream.
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetBody(StreamingHttpOutputMessage.Body body)Set the streaming body callback for this message.Methods inherited from interface org.springframework.http.HttpMessage
getHeaders
Methods inherited from interface org.springframework.http.HttpOutputMessage
getBody
Method Detail
setBody
void setBody(StreamingHttpOutputMessage.Body body)
Set the streaming body callback for this message.- Parameters:
body- the streaming body callback