Package org.springframework.http
Interface StreamingHttpOutputMessage.Body
- Enclosing interface:
- StreamingHttpOutputMessage
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Contract to stream request body content to an
OutputStream.
In some HTTP client libraries this is only possible indirectly through a
callback mechanism.-
Method Summary
Modifier and TypeMethodDescriptiondefault booleanIndicates whether this body is capable of writing its data more than once.voidwriteTo(OutputStream outputStream) Write this body to the givenOutputStream.
-
Method Details
-
writeTo
Write this body to the givenOutputStream.- Parameters:
outputStream- the output stream to write to- Throws:
IOException- in case of I/O errors
-
repeatable
default boolean repeatable()Indicates whether this body is capable of writing its data more than once. The default implementation returnsfalse.- Returns:
trueif this body can be written repeatedly,falseotherwise- Since:
- 6.1
-