Improved documentation on setBody()

This commit is contained in:
Arjen Poutsma 2015-10-29 16:44:13 +01:00
parent 45a88974bc
commit e121f7ecd4
1 changed files with 5 additions and 3 deletions

View File

@ -31,9 +31,11 @@ import org.reactivestreams.Publisher;
public interface ReactiveHttpOutputMessage extends HttpMessage { public interface ReactiveHttpOutputMessage extends HttpMessage {
/** /**
* Adds the given publisher of {@link ByteBuffer}s as a body. A HTTP/1.1 message has * Sets the body of this message to the given publisher of {@link ByteBuffer}s. The
* one body, but HTTP/1.2 supports multiple bodies. * publisher will be used to write to the underlying HTTP layer with asynchronously,
* @param body the body to add * given pull demand by this layer.
*
* @param body the body to use
* @return a publisher that indicates completion * @return a publisher that indicates completion
*/ */
Publisher<Void> setBody(Publisher<ByteBuffer> body); Publisher<Void> setBody(Publisher<ByteBuffer> body);