Uses of Interface
org.springframework.core.task.AsyncListenableTaskExecutor
Packages that use AsyncListenableTaskExecutor
Package
Description
This package defines Spring's core TaskExecutor abstraction,
and provides SyncTaskExecutor and SimpleAsyncTaskExecutor implementations.
Support classes for Spring's TaskExecutor abstraction.
Scheduling convenience classes for the
java.util.concurrent
and jakarta.enterprise.concurrent packages, allowing to set up a
ThreadPoolExecutor or ScheduledThreadPoolExecutor as a bean in a Spring
context.Support classes for the open source scheduler
Quartz,
allowing to set up Quartz Schedulers, JobDetails and
Triggers as beans in a Spring context.
Client-side support for the Jetty WebSocket API.
Client-side classes for use with standard Java WebSocket endpoints.
-
Uses of AsyncListenableTaskExecutor in org.springframework.core.task
Classes in org.springframework.core.task that implement AsyncListenableTaskExecutorModifier and TypeClassDescriptionclassTaskExecutorimplementation that fires up a new Thread for each task, executing it asynchronously. -
Uses of AsyncListenableTaskExecutor in org.springframework.core.task.support
Classes in org.springframework.core.task.support that implement AsyncListenableTaskExecutorModifier and TypeClassDescriptionclassAdapter that takes a JDKjava.util.concurrent.Executorand exposes a SpringTaskExecutorfor it. -
Uses of AsyncListenableTaskExecutor in org.springframework.scheduling.concurrent
Classes in org.springframework.scheduling.concurrent that implement AsyncListenableTaskExecutorModifier and TypeClassDescriptionclassAdapter that takes ajava.util.concurrent.Executorand exposes a SpringTaskExecutorfor it.classAdapter that takes ajava.util.concurrent.ScheduledExecutorServiceand exposes a SpringTaskSchedulerfor it.classJNDI-based variant ofConcurrentTaskExecutor, performing a default lookup for JSR-236's "java:comp/DefaultManagedExecutorService" in a Jakarta EE/8 environment.classJNDI-based variant ofConcurrentTaskScheduler, performing a default lookup for JSR-236's "java:comp/DefaultManagedScheduledExecutorService" in a Jakarta EE environment.classJavaBean that allows for configuring aThreadPoolExecutorin bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties) and exposing it as a SpringTaskExecutor.classImplementation of Spring'sTaskSchedulerinterface, wrapping a nativeScheduledThreadPoolExecutor. -
Uses of AsyncListenableTaskExecutor in org.springframework.scheduling.quartz
Classes in org.springframework.scheduling.quartz that implement AsyncListenableTaskExecutorModifier and TypeClassDescriptionclassSubclass of Quartz's SimpleThreadPool that implements Spring'sTaskExecutorinterface and listens to Spring lifecycle callbacks. -
Uses of AsyncListenableTaskExecutor in org.springframework.web.socket.client.jetty
Methods in org.springframework.web.socket.client.jetty that return AsyncListenableTaskExecutorModifier and TypeMethodDescriptionJettyWebSocketClient.getTaskExecutor()Return the configuredTaskExecutor.Methods in org.springframework.web.socket.client.jetty with parameters of type AsyncListenableTaskExecutorModifier and TypeMethodDescriptionvoidJettyWebSocketClient.setTaskExecutor(AsyncListenableTaskExecutor taskExecutor) Set anAsyncListenableTaskExecutorto use when opening connections. -
Uses of AsyncListenableTaskExecutor in org.springframework.web.socket.client.standard
Methods in org.springframework.web.socket.client.standard that return AsyncListenableTaskExecutorModifier and TypeMethodDescriptionStandardWebSocketClient.getTaskExecutor()Return the configuredTaskExecutor.Methods in org.springframework.web.socket.client.standard with parameters of type AsyncListenableTaskExecutorModifier and TypeMethodDescriptionvoidStandardWebSocketClient.setTaskExecutor(AsyncListenableTaskExecutor taskExecutor) Set anAsyncListenableTaskExecutorto use when opening connections.