You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-websocket/src/main/java/org/springframework/web/socket/handler/ConcurrentWebSocketSessionDecorator.java
+38-17Lines changed: 38 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2016 the original author or authors.
2
+
* Copyright 2002-2017 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -34,13 +34,13 @@
34
34
* Wrap a {@link org.springframework.web.socket.WebSocketSession WebSocketSession}
35
35
* to guarantee only one thread can send messages at a time.
36
36
*
37
-
* <p>If a send is slow, subsequent attempts to send more messages from other
38
-
* threads will not be able to acquire the flush lock and messages will be
39
-
* buffered instead -- at that time, the specified buffer-size limit and
40
-
* send-time limit will be checked and the session closed if the limits are
41
-
* exceeded.
37
+
* <p>If a send is slow, subsequent attempts to send more messages from other threads
38
+
* will not be able to acquire the flush lock and messages will be buffered instead.
39
+
* At that time, the specified buffer-size limit and send-time limit will be checked
40
+
* and the session will be closed if the limits are exceeded.
0 commit comments