Uses of Interface
org.springframework.core.task.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
Modifier and TypeClassDescriptionclass
TaskExecutor
implementation that fires up a new Thread for each task, executing it asynchronously. -
Uses of AsyncListenableTaskExecutor in org.springframework.core.task.support
Modifier and TypeClassDescriptionclass
Adapter that takes a JDKjava.util.concurrent.Executor
and exposes a SpringTaskExecutor
for it. -
Uses of AsyncListenableTaskExecutor in org.springframework.scheduling.concurrent
Modifier and TypeClassDescriptionclass
Adapter that takes ajava.util.concurrent.Executor
and exposes a SpringTaskExecutor
for it.class
Adapter that takes ajava.util.concurrent.ScheduledExecutorService
and exposes a SpringTaskScheduler
for it.class
JNDI-based variant ofConcurrentTaskExecutor
, performing a default lookup for JSR-236's "java:comp/DefaultManagedExecutorService" in a Jakarta EE/8 environment.class
JNDI-based variant ofConcurrentTaskScheduler
, performing a default lookup for JSR-236's "java:comp/DefaultManagedScheduledExecutorService" in a Jakarta EE environment.class
JavaBean that allows for configuring aThreadPoolExecutor
in bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties) and exposing it as a SpringTaskExecutor
.class
Implementation of Spring'sTaskScheduler
interface, wrapping a nativeScheduledThreadPoolExecutor
. -
Uses of AsyncListenableTaskExecutor in org.springframework.scheduling.quartz
Modifier and TypeClassDescriptionclass
Subclass of Quartz's SimpleThreadPool that implements Spring'sTaskExecutor
interface and listens to Spring lifecycle callbacks. -
Uses of AsyncListenableTaskExecutor in org.springframework.web.socket.client.jetty
Modifier and TypeMethodDescriptionJettyWebSocketClient.getTaskExecutor()
Return the configuredTaskExecutor
.Modifier and TypeMethodDescriptionvoid
JettyWebSocketClient.setTaskExecutor
(AsyncListenableTaskExecutor taskExecutor) Set anAsyncListenableTaskExecutor
to use when opening connections. -
Uses of AsyncListenableTaskExecutor in org.springframework.web.socket.client.standard
Modifier and TypeMethodDescriptionStandardWebSocketClient.getTaskExecutor()
Return the configuredTaskExecutor
.Modifier and TypeMethodDescriptionvoid
StandardWebSocketClient.setTaskExecutor
(AsyncListenableTaskExecutor taskExecutor) Set anAsyncListenableTaskExecutor
to use when opening connections.