Polishing

This commit is contained in:
Juergen Hoeller
2019-09-27 10:17:56 +02:00
parent 6a207d0012
commit 2861fc65bd
35 changed files with 108 additions and 121 deletions

View File

@@ -31,7 +31,7 @@ public interface ReactiveMessageHandler {
/**
* Handle the given message.
* @param message the message to be handled
* @return a completion {@link Mono} for the result of the message handling.
* @return a completion {@link Mono} for the result of the message handling
*/
Mono<Void> handleMessage(Message<?> message);

View File

@@ -55,12 +55,10 @@ public @interface ConnectMapping {
* Mappings expressed by this annotation to match to the route from the
* metadata of the initial {@link ConnectionSetupPayload} or in
* subsequent metadata pushes.
*
* <p>Depending on the configured
* {@link org.springframework.util.RouteMatcher RouteMatcher}, the pattern may be
* {@link org.springframework.util.AntPathMatcher AntPathMatcher} or
* {@link org.springframework.web.util.pattern.PathPattern PathPattern} based.
*
* <p>By default this is an empty array in which case it matches all
* {@link ConnectionSetupPayload} and metadata pushes.
*/

View File

@@ -1053,7 +1053,6 @@ public class StompBrokerRelayMessageHandler extends AbstractBrokerMessageHandler
private final AtomicInteger disconnect = new AtomicInteger();
public void incrementConnectCount() {
this.connect.incrementAndGet();
}