Document Lifecycle#stop concurrency semantics

Issue: SPR-8570
master
Chris Beams 13 years ago
parent fa7f13016e
commit 35d2ab3bf9
  1. 8
      org.springframework.context/src/main/java/org/springframework/context/Lifecycle.java

@ -55,10 +55,14 @@ public interface Lifecycle {
void start();
/**
* Stop this component.
* Should not throw an exception if the component isn't started yet.
* Stop this component, typically in a synchronous fashion, such that
* the component is fully stopped upon return of this method. Consider
* implementing {@link SmartLifecycle} and its {@code stop(Runnable)}
* variant in cases where asynchronous stop behavior is necessary.
* <p>Should not throw an exception if the component isn't started yet.
* <p>In the case of a container, this will propagate the stop signal
* to all components that apply.
* @see SmartLifecycle#stop(Runnable)
*/
void stop();

Loading…
Cancel
Save