File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-webflux/src/main/java/org/springframework/web/reactive/socket Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 44
44
* @Override
45
45
* public Mono<Void> handle(WebSocketSession session) {
46
46
*
47
- * Flux<WebSocketMessage> input = session.receive()
47
+ * Flux<WebSocketMessage> output = session.receive()
48
48
* .doOnNext(message -> {
49
49
* // ...
50
50
* })
89
89
* completion of that flow. That means there is no need to check if the
90
90
* connection is open, since Reactive Streams signals will terminate activity.
91
91
* The inbound stream receives a completion/error signal, and the outbound
92
- * stream receives receives a cancellation signal.
92
+ * stream receives a cancellation signal.
93
93
*
94
94
* @author Rossen Stoyanchev
95
95
* @since 5.0
You can’t perform that action at this time.
0 commit comments