Uses of Interface
org.springframework.scheduling.TaskScheduler
Packages that use TaskScheduler Package Description 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.config Configuration support for WebSocket messaging using higher level messaging protocols.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.commonj Convenience classes for scheduling based on the CommonJ WorkManager/TimerManager facility, as supported by IBM WebSphere 6.0+ and BEA WebLogic 9.0+.org.springframework.scheduling.concurrent Scheduling convenience classes for thejava.util.concurrentandjavax.enterprise.concurrentpackages, allowing to set up a ThreadPoolExecutor or ScheduledThreadPoolExecutor as a bean in a Spring context.org.springframework.scheduling.config Support package for declarative scheduling configuration, with XML schema being the primary configuration format.org.springframework.web.socket.config Configuration support for WebSocket request handling.org.springframework.web.socket.config.annotation Support for annotation-based WebSocket setup in configuration classes.org.springframework.web.socket.messaging WebSocket integration for Spring's messaging module.org.springframework.web.socket.sockjs.client SockJS client implementation ofWebSocketClient.org.springframework.web.socket.sockjs.support Support classes for SockJS including anAbstractSockJsServiceimplementation.org.springframework.web.socket.sockjs.transport Server-side support for SockJS transports includingTransportHandlerimplementations for processing incoming requests, theirsessioncounterparts for sending messages over the various transports, andDefaultSockJsService.org.springframework.web.socket.sockjs.transport.handler TransportHandlerimplementation classes as well as a concreteSockJsService.Uses of TaskScheduler in org.springframework.messaging.simp.broker
Methods in org.springframework.messaging.simp.broker that return TaskScheduler Modifier and Type Method Description TaskSchedulerSimpleBrokerMessageHandler. getTaskScheduler()Return the configured TaskScheduler.Methods in org.springframework.messaging.simp.broker with parameters of type TaskScheduler Modifier and Type Method Description voidSimpleBrokerMessageHandler. setTaskScheduler(TaskScheduler taskScheduler)Configure theTaskSchedulerto use for providing heartbeat support.Uses of TaskScheduler in org.springframework.messaging.simp.config
Methods in org.springframework.messaging.simp.config that return TaskScheduler Modifier and Type Method Description TaskSchedulerAbstractMessageBrokerConfiguration. messageBrokerTaskScheduler()Methods in org.springframework.messaging.simp.config with parameters of type TaskScheduler Modifier and Type Method Description SimpleBrokerRegistrationSimpleBrokerRegistration. setTaskScheduler(TaskScheduler taskScheduler)Configure theTaskSchedulerto use for providing heartbeat support.Uses of TaskScheduler in org.springframework.messaging.simp.stomp
Methods in org.springframework.messaging.simp.stomp that return TaskScheduler Modifier and Type Method Description TaskSchedulerDefaultStompSession. getTaskScheduler()Return the configured TaskScheduler to use for receipt tracking.TaskSchedulerStompClientSupport. getTaskScheduler()The configured TaskScheduler.Methods in org.springframework.messaging.simp.stomp with parameters of type TaskScheduler Modifier and Type Method Description voidDefaultStompSession. setTaskScheduler(TaskScheduler taskScheduler)Configure the TaskScheduler to use for receipt tracking.voidStompClientSupport. setTaskScheduler(TaskScheduler taskScheduler)Configure a scheduler to use for heartbeats and for receipt tracking.Uses of TaskScheduler in org.springframework.messaging.simp.user
Constructors in org.springframework.messaging.simp.user with parameters of type TaskScheduler Constructor Description UserRegistryMessageHandler(MultiServerUserRegistry userRegistry, SimpMessagingTemplate brokerTemplate, String broadcastDestination, TaskScheduler scheduler)Constructor.Uses of TaskScheduler in org.springframework.scheduling.commonj
Classes in org.springframework.scheduling.commonj that implement TaskScheduler Modifier and Type Class Description classTimerManagerTaskSchedulerDeprecated.as of 5.1, in favor of EE 7'sDefaultManagedTaskSchedulerUses of TaskScheduler in org.springframework.scheduling.concurrent
Classes in org.springframework.scheduling.concurrent that implement TaskScheduler Modifier and Type Class Description classConcurrentTaskSchedulerAdapter that takes ajava.util.concurrent.ScheduledExecutorServiceand exposes a SpringTaskSchedulerfor it.classDefaultManagedTaskSchedulerJNDI-based variant ofConcurrentTaskScheduler, performing a default lookup for JSR-236's "java:comp/DefaultManagedScheduledExecutorService" in a Java EE 7 environment.classThreadPoolTaskSchedulerImplementation of Spring'sTaskSchedulerinterface, wrapping a nativeScheduledThreadPoolExecutor.Uses of TaskScheduler in org.springframework.scheduling.config
Methods in org.springframework.scheduling.config that return TaskScheduler Modifier and Type Method Description TaskSchedulerScheduledTaskRegistrar. getScheduler()Return theTaskSchedulerinstance for this registrar (may benull).Methods in org.springframework.scheduling.config with parameters of type TaskScheduler Modifier and Type Method Description voidScheduledTaskRegistrar. setTaskScheduler(TaskScheduler taskScheduler)Set theTaskSchedulerto register scheduled tasks with.Uses of TaskScheduler in org.springframework.web.socket.config
Methods in org.springframework.web.socket.config with parameters of type TaskScheduler Modifier and Type Method Description voidWebSocketMessageBrokerStats. setSockJsTaskScheduler(TaskScheduler sockJsTaskScheduler)Uses of TaskScheduler in org.springframework.web.socket.config.annotation
Methods in org.springframework.web.socket.config.annotation that return TaskScheduler Modifier and Type Method Description TaskSchedulerWebSocketConfigurationSupport. defaultSockJsTaskScheduler()The default TaskScheduler to use if none is registered explicitly viaSockJsServiceRegistration.setTaskScheduler(org.springframework.scheduling.TaskScheduler):protected TaskSchedulerSockJsServiceRegistration. getTaskScheduler()Return the TaskScheduler, if configured.Methods in org.springframework.web.socket.config.annotation with parameters of type TaskScheduler Modifier and Type Method Description protected voidServletWebSocketHandlerRegistry. setTaskScheduler(TaskScheduler scheduler)Provide the TaskScheduler to use for SockJS endpoints for which a task scheduler has not been explicitly registered.SockJsServiceRegistrationSockJsServiceRegistration. setTaskScheduler(TaskScheduler scheduler)A scheduler instance to use for scheduling SockJS heart-beats.Constructors in org.springframework.web.socket.config.annotation with parameters of type TaskScheduler Constructor Description WebMvcStompEndpointRegistry(WebSocketHandler webSocketHandler, WebSocketTransportRegistration transportRegistration, TaskScheduler defaultSockJsTaskScheduler)WebMvcStompWebSocketEndpointRegistration(String[] paths, WebSocketHandler webSocketHandler, TaskScheduler sockJsTaskScheduler)Uses of TaskScheduler in org.springframework.web.socket.messaging
Methods in org.springframework.web.socket.messaging with parameters of type TaskScheduler Modifier and Type Method Description voidWebSocketStompClient. setTaskScheduler(TaskScheduler taskScheduler)Configure a scheduler to use for heartbeats and for receipt tracking.Uses of TaskScheduler in org.springframework.web.socket.sockjs.client
Methods in org.springframework.web.socket.sockjs.client with parameters of type TaskScheduler Modifier and Type Method Description voidSockJsClient. setConnectTimeoutScheduler(TaskScheduler connectTimeoutScheduler)Configure aTaskSchedulerfor scheduling a connect timeout task where the timeout value is calculated based on the duration of the initial SockJS "Info" request.Uses of TaskScheduler in org.springframework.web.socket.sockjs.support
Methods in org.springframework.web.socket.sockjs.support that return TaskScheduler Modifier and Type Method Description TaskSchedulerAbstractSockJsService. getTaskScheduler()A scheduler instance to use for scheduling heart-beat messages.Constructors in org.springframework.web.socket.sockjs.support with parameters of type TaskScheduler Constructor Description AbstractSockJsService(TaskScheduler scheduler)Uses of TaskScheduler in org.springframework.web.socket.sockjs.transport
Methods in org.springframework.web.socket.sockjs.transport that return TaskScheduler Modifier and Type Method Description TaskSchedulerSockJsServiceConfig. getTaskScheduler()A scheduler instance to use for scheduling heart-beat messages.Constructors in org.springframework.web.socket.sockjs.transport with parameters of type TaskScheduler Constructor Description TransportHandlingSockJsService(TaskScheduler scheduler, Collection<TransportHandler> handlers)Create a TransportHandlingSockJsService with givenhandlertypes.TransportHandlingSockJsService(TaskScheduler scheduler, TransportHandler... handlers)Create a TransportHandlingSockJsService with givenhandlertypes.Uses of TaskScheduler in org.springframework.web.socket.sockjs.transport.handler
Constructors in org.springframework.web.socket.sockjs.transport.handler with parameters of type TaskScheduler Constructor Description DefaultSockJsService(TaskScheduler scheduler)Create a DefaultSockJsService with defaulthandlertypes.DefaultSockJsService(TaskScheduler scheduler, Collection<TransportHandler> handlerOverrides)Create a DefaultSockJsService with overriddenhandlertypes replacing the corresponding default handler implementation.DefaultSockJsService(TaskScheduler scheduler, TransportHandler... handlerOverrides)Create a DefaultSockJsService with overriddenhandlertypes replacing the corresponding default handler implementation.