Class ContextPausedEvent
java.lang.Object
java.util.EventObject
org.springframework.context.ApplicationEvent
org.springframework.context.event.ApplicationContextEvent
org.springframework.context.event.ContextStoppedEvent
org.springframework.context.event.ContextPausedEvent
- All Implemented Interfaces:
Serializable
Event raised when an
ApplicationContext
gets paused.
Note that ContextPausedEvent
is a specialization of
ContextStoppedEvent
.
- Since:
- 7.0
- Author:
- Juergen Hoeller
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionContextPausedEvent
(ApplicationContext source) Create a newContextPausedEvent
. -
Method Summary
Methods inherited from class org.springframework.context.event.ApplicationContextEvent
getApplicationContext, getSource
Methods inherited from class org.springframework.context.ApplicationEvent
getTimestamp
Methods inherited from class java.util.EventObject
toString
-
Constructor Details
-
ContextPausedEvent
Create a newContextPausedEvent
.- Parameters:
source
- theApplicationContext
that has been paused (must not benull
)
-