Polish JavaDoc

Issue: SPR-17174
This commit is contained in:
Sam Brannen
2018-08-18 18:15:05 +02:00
parent 1d59e52f11
commit a8fbac8472
4 changed files with 73 additions and 71 deletions

View File

@@ -34,8 +34,7 @@ import org.springframework.messaging.Message;
public interface ReactorNettyCodec<P> {
/**
* Decode the input {@link ByteBuf} into one or more {@link Message ByteBuf}
* into one or more {@link Message} objects.
* Decode the input {@link ByteBuf} into one or more {@link Message Messages}.
* @param inputBuffer the input buffer to decode from
* @return 0 or more decoded messages
*/
@@ -43,7 +42,7 @@ public interface ReactorNettyCodec<P> {
/**
* Encode the given {@link Message} to the output {@link ByteBuf}.
* @param message the message the encode
* @param message the message to encode
* @param outputBuffer the buffer to write to
*/
void encode(Message<P> message, ByteBuf outputBuffer);