From 020c6c0102c33b362acb34db441359cc35641e15 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Wed, 16 May 2018 10:18:01 -0400 Subject: [PATCH] Polish: remove Javadoc tags from spring-websocket.xsd --- .../web/socket/config/spring-websocket.xsd | 31 +++++++++---------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/spring-websocket/src/main/resources/org/springframework/web/socket/config/spring-websocket.xsd b/spring-websocket/src/main/resources/org/springframework/web/socket/config/spring-websocket.xsd index fb2a21dcd7..df38c62614 100644 --- a/spring-websocket/src/main/resources/org/springframework/web/socket/config/spring-websocket.xsd +++ b/spring-websocket/src/main/resources/org/springframework/web/socket/config/spring-websocket.xsd @@ -526,14 +526,14 @@ @@ -663,10 +663,10 @@ In general WebSocket servers expect that messages to a single WebSocket session are sent from a single thread at a time. This is automatically - guaranteed when using {@code @EnableWebSocketMessageBroker} configuration. + guaranteed when using @EnableWebSocketMessageBroker configuration. If message sending is slow, or at least slower than rate of messages sending, - subsequent messages are buffered until either the {@code sendTimeLimit} - or the {@code sendBufferSizeLimit} are reached at which point the session + subsequent messages are buffered until either the sendTimeLimit + or the sendBufferSizeLimit are reached at which point the session state is cleared and an attempt is made to close the session. NOTE that closing the session may not succeed in @@ -675,14 +675,11 @@ configured by default on Tomcat 7. Therefore it is recommended to ensure the server is using non-blocking IO such as Tomcat's NIO connector used by default on Tomcat 8. If you must use blocking IO consider customizing - OS-level TCP settings, for example {@code /proc/sys/net/ipv4/tcp_retries2} + OS-level TCP settings, for example /proc/sys/net/ipv4/tcp_retries2 on Linux. - The default value is 512K (i.e. 512 * 1024). - - @param sendBufferSizeLimit the maximum number of bytes to buffer when - sending messages; if the value is less than or equal to 0 then buffering - is effectively disabled. + The default value is 512K (i.e. 512 * 1024). If the value is set to less + than or equal to 0 then buffering is effectively disabled. ]]> @@ -727,14 +724,14 @@