Uses of Interface
org.springframework.context.Phased
Packages that use Phased Package Description org.springframework.context This package builds on the beans package to add support for message sources and for the Observer design pattern, and the ability for application objects to obtain resources using a consistent API.org.springframework.jca.endpoint This package provides a facility for generic JCA message endpoint management.org.springframework.jms.config Support package for declarative messaging configuration, with Java configuration and XML schema support.org.springframework.jms.listener This package contains the base message listener container facility.org.springframework.jms.listener.endpoint This package provides JCA-based endpoint management for JMS message listeners.org.springframework.messaging.simp.annotation.support Support classes for handling messages from simple messaging protocols (like STOMP).org.springframework.messaging.simp.broker Provides a "simple" message broker implementation along with an abstract base class and other supporting types such as a registry for subscriptions.org.springframework.messaging.simp.stomp Generic support for simple messaging protocols (like STOMP).org.springframework.messaging.simp.user Support for handling messages to "user" destinations (i.e.org.springframework.scheduling.quartz Support classes for the open source scheduler Quartz, allowing to set up Quartz Schedulers, JobDetails and Triggers as beans in a Spring context.org.springframework.web.socket.client Client-side abstractions for WebSocket applications.org.springframework.web.socket.client.standard Client-side classes for use with standard Java WebSocket endpoints.org.springframework.web.socket.messaging WebSocket integration for Spring's messaging module.org.springframework.web.socket.server.support Server-side support classes including container-specific strategies for upgrading a request.Uses of Phased in org.springframework.context
Subinterfaces of Phased in org.springframework.context Modifier and Type Interface Description interfaceSmartLifecycleAn extension of theLifecycleinterface for those objects that require to be started uponApplicationContextrefresh and/or shutdown in a particular order.Uses of Phased in org.springframework.jca.endpoint
Classes in org.springframework.jca.endpoint that implement Phased Modifier and Type Class Description classGenericMessageEndpointManagerGeneric bean that manages JCA 1.7 message endpoints within a Spring application context, activating and deactivating the endpoint as part of the application context's lifecycle.Uses of Phased in org.springframework.jms.config
Classes in org.springframework.jms.config that implement Phased Modifier and Type Class Description classJmsListenerEndpointRegistryCreates the necessaryMessageListenerContainerinstances for the registered endpoints.Uses of Phased in org.springframework.jms.listener
Subinterfaces of Phased in org.springframework.jms.listener Modifier and Type Interface Description interfaceMessageListenerContainerInternal abstraction used by the framework representing a message listener container.Classes in org.springframework.jms.listener that implement Phased Modifier and Type Class Description classAbstractJmsListeningContainerCommon base class for all containers which need to implement listening based on a JMS Connection (either shared or freshly obtained for each attempt).classAbstractMessageListenerContainerAbstract base class for Spring message listener container implementations.classAbstractPollingMessageListenerContainerBase class for listener container implementations which are based on polling.classDefaultMessageListenerContainerMessage listener container variant that uses plain JMS client APIs, specifically a loop ofMessageConsumer.receive()calls that also allow for transactional reception of messages (registering them with XA transactions).classSimpleMessageListenerContainerMessage listener container that uses the plain JMS client API'sMessageConsumer.setMessageListener()method to create concurrent MessageConsumers for the specified listeners.Uses of Phased in org.springframework.jms.listener.endpoint
Classes in org.springframework.jms.listener.endpoint that implement Phased Modifier and Type Class Description classJmsMessageEndpointManagerExtension of the generic JCA 1.5GenericMessageEndpointManager, adding JMS-specific support for ActivationSpec configuration.Uses of Phased in org.springframework.messaging.simp.annotation.support
Classes in org.springframework.messaging.simp.annotation.support that implement Phased Modifier and Type Class Description classSimpAnnotationMethodMessageHandlerA handler for messages delegating to@MessageMappingand@SubscribeMappingannotated methods.Uses of Phased in org.springframework.messaging.simp.broker
Classes in org.springframework.messaging.simp.broker that implement Phased Modifier and Type Class Description classAbstractBrokerMessageHandlerAbstract base class for aMessageHandlerthat broker messages to registered subscribers.classSimpleBrokerMessageHandlerA "simple" message broker that recognizes the message types defined inSimpMessageType, keeps track of subscriptions with the help of aSubscriptionRegistryand sends messages to subscribers.Uses of Phased in org.springframework.messaging.simp.stomp
Classes in org.springframework.messaging.simp.stomp that implement Phased Modifier and Type Class Description classStompBrokerRelayMessageHandlerAMessageHandlerthat handles messages by forwarding them to a STOMP broker.Uses of Phased in org.springframework.messaging.simp.user
Classes in org.springframework.messaging.simp.user that implement Phased Modifier and Type Class Description classUserDestinationMessageHandlerMessageHandlerwith support for "user" destinations.Uses of Phased in org.springframework.scheduling.quartz
Classes in org.springframework.scheduling.quartz that implement Phased Modifier and Type Class Description classSchedulerFactoryBeanFactoryBeanthat creates and configures a QuartzScheduler, manages its lifecycle as part of the Spring application context, and exposes the Scheduler as bean reference for dependency injection.Uses of Phased in org.springframework.web.socket.client
Classes in org.springframework.web.socket.client that implement Phased Modifier and Type Class Description classConnectionManagerSupportA base class for WebSocket connection managers.classWebSocketConnectionManagerA WebSocket connection manager that is given a URI, aWebSocketClient, and aWebSocketHandler, connects to a WebSocket server throughConnectionManagerSupport.start()andConnectionManagerSupport.stop()methods.Uses of Phased in org.springframework.web.socket.client.standard
Classes in org.springframework.web.socket.client.standard that implement Phased Modifier and Type Class Description classAnnotatedEndpointConnectionManagerA WebSocket connection manager that is given a URI, aClientEndpoint-annotated endpoint, connects to a WebSocket server through theConnectionManagerSupport.start()andConnectionManagerSupport.stop()methods.classEndpointConnectionManagerA WebSocket connection manager that is given a URI, anEndpoint, connects to a WebSocket server through theConnectionManagerSupport.start()andConnectionManagerSupport.stop()methods.Uses of Phased in org.springframework.web.socket.messaging
Classes in org.springframework.web.socket.messaging that implement Phased Modifier and Type Class Description classSubProtocolWebSocketHandlerAn implementation ofWebSocketHandlerthat delegates incoming WebSocket messages to aSubProtocolHandleralong with aMessageChannelto which the sub-protocol handler can send messages from WebSocket clients to the application.classWebSocketAnnotationMethodMessageHandlerA sub-class ofSimpAnnotationMethodMessageHandlerto provide support forControllerAdvicewith global@MessageExceptionHandlermethods.classWebSocketStompClientA STOMP over WebSocket client that connects using an implementation ofWebSocketClientincludingSockJsClient.Uses of Phased in org.springframework.web.socket.server.support
Classes in org.springframework.web.socket.server.support that implement Phased Modifier and Type Class Description classWebSocketHandlerMappingAn extension ofSimpleUrlHandlerMappingthat is also aSmartLifecyclecontainer and propagates start and stop calls to any handlers that implementLifecycle.