File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
spring-context/src/main/java/org/springframework/context
spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ public interface Lifecycle {
52
52
/**
53
53
* Start this component.
54
54
* <p>Should not throw an exception if the component is already running.
55
- * <p>In the case of a container, this will propagate the start signal to all
56
- * components that apply.
55
+ * <p>In the case of a container, this will propagate a hard start signal to all
56
+ * components that apply, even to non-auto-startup components .
57
57
* @see SmartLifecycle#isAutoStartup()
58
58
*/
59
59
void start ();
Original file line number Diff line number Diff line change @@ -46,11 +46,10 @@ public class SseEmitter extends ResponseBodyEmitter {
46
46
47
47
private static final MediaType TEXT_PLAIN = new MediaType ("text" , "plain" , StandardCharsets .UTF_8 );
48
48
49
- /**
50
- * Guards access to write operations on the response.
51
- */
49
+ /** Guards access to write operations on the response. */
52
50
private final Lock writeLock = new ReentrantLock ();
53
51
52
+
54
53
/**
55
54
* Create a new SseEmitter instance.
56
55
*/
You can’t perform that action at this time.
0 commit comments