Skip to content

Commit 9c5ac91

Browse files
committed
updated javadoc
Signed-off-by: Robert Roeser <[email protected]>
1 parent 48acae8 commit 9c5ac91

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

rsocket-core/src/main/java/io/rsocket/RequestHandler.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@
44
import reactor.core.publisher.Flux;
55

66
/**
7-
* Extends the {@link RSocket} that allows an implementor to peek at the first request payload of a channel.
7+
* Extends the {@link RSocket} that allows an implementer to peek at the first request payload of a
8+
* channel.
89
*/
910
public interface RequestHandler extends RSocket {
1011
/**
11-
* Implement this method to peak at the first payload of the incoming request stream
12-
* @param payload First payload in the stream
12+
* Implement this method to peak at the first payload of the incoming request stream without
13+
* having to subscribe to Publish&lt;Payload&gt; payloads
14+
*
15+
* @param payload First payload in the stream - this is the same payload as the first payload in
16+
* Publisher&lt;Payload&gt; payloads
1317
* @param payloads Stream of request payloads.
1418
* @return Stream of response payloads.
1519
*/

0 commit comments

Comments
 (0)