|
Java™ Platform Standard Ed. 7 DRAFT ea-b39 |
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Executor | |
|---|---|
| java.util.concurrent | Utility classes commonly useful in concurrent programming. |
| javax.management | Provides the core classes for the Java Management Extensions. |
| javax.management.event | Defines the Event Service, which provides extended support for JMX notifications. |
| javax.xml.ws | This package contains the core JAX-WS APIs. |
| javax.xml.ws.spi | This package defines SPIs for JAX-WS 2.0. |
| Uses of Executor in java.util.concurrent |
|---|
| Subinterfaces of Executor in java.util.concurrent | |
|---|---|
interface |
ExecutorService
An Executor that provides methods to manage termination and
methods that can produce a Future for tracking progress of
one or more asynchronous tasks. |
interface |
ScheduledExecutorService
An ExecutorService that can schedule commands to run after a given
delay, or to execute periodically. |
| Classes in java.util.concurrent that implement Executor | |
|---|---|
class |
AbstractExecutorService
Provides default implementations of ExecutorService
execution methods. |
class |
ScheduledThreadPoolExecutor
A ThreadPoolExecutor that can additionally schedule
commands to run after a given delay, or to execute
periodically. |
class |
ThreadPoolExecutor
An ExecutorService that executes each submitted task using
one of possibly several pooled threads, normally configured
using Executors factory methods. |
| Constructors in java.util.concurrent with parameters of type Executor | |
|---|---|
ExecutorCompletionService(Executor executor)
Creates an ExecutorCompletionService using the supplied executor for base task execution and a LinkedBlockingQueue as a completion queue. |
|
ExecutorCompletionService(Executor executor,
BlockingQueue<Future<V>> completionQueue)
Creates an ExecutorCompletionService using the supplied executor for base task execution and the supplied queue as its completion queue. |
|
| Uses of Executor in javax.management |
|---|
| Constructors in javax.management with parameters of type Executor | |
|---|---|
NotificationBroadcasterSupport(Executor executor)
Constructs a NotificationBroadcasterSupport where each listener is invoked using the given Executor. |
|
NotificationBroadcasterSupport(Executor executor,
MBeanNotificationInfo... info)
Constructs a NotificationBroadcasterSupport with information about the notifications that may be sent, and where each listener is invoked using the given Executor. |
|
| Uses of Executor in javax.management.event |
|---|
| Constructors in javax.management.event with parameters of type Executor | |
|---|---|
EventClient(EventClientDelegateMBean delegate,
EventRelay eventRelay,
Executor distributingExecutor,
ScheduledExecutorService leaseScheduler,
long requestedLeaseTime)
Constructs an EventClient object with the specified
EventClientDelegateMBean, EventRelay
object, and distributing thread. |
|
FetchingEventRelay(EventClientDelegateMBean delegate,
Executor fetchExecutor)
Constructs a FetchingEventRelay object by using the default
configuration: DEFAULT_BUFFER_SIZE, DEFAULT_WAITING_TIMEOUT
DEFAULT_MAX_NOTIFICATIONS, with a user-specific executor to do
the fetching. |
|
FetchingEventRelay(EventClientDelegateMBean delegate,
int bufferSize,
long timeout,
int maxNotifs,
Executor fetchExecutor)
Constructs a FetchingEventRelay object with user-specific
configuration and executor to fetch notifications via the
EventClientDelegateMBean. |
|
FetchingEventRelay(EventClientDelegateMBean delegate,
int bufferSize,
long timeout,
int maxNotifs,
Executor fetchExecutor,
String forwarderName,
Object[] params,
String[] sig)
Constructs a FetchingEventRelay object with user-specific
configuration and executor to fetch notifications via the
EventClientDelegateMBean. |
|
| Uses of Executor in javax.xml.ws |
|---|
| Methods in javax.xml.ws that return Executor | |
|---|---|
Executor |
Service.getExecutor()
Returns the executor for this Serviceinstance. |
abstract Executor |
Endpoint.getExecutor()
Returns the executor for this Endpointinstance. |
| Methods in javax.xml.ws with parameters of type Executor | |
|---|---|
void |
Service.setExecutor(Executor executor)
Sets the executor for this Service instance. |
abstract void |
Endpoint.setExecutor(Executor executor)
Sets the executor for this Endpoint instance. |
| Uses of Executor in javax.xml.ws.spi |
|---|
| Methods in javax.xml.ws.spi that return Executor | |
|---|---|
abstract Executor |
ServiceDelegate.getExecutor()
Returns the executor for this Serviceinstance. |
| Methods in javax.xml.ws.spi with parameters of type Executor | |
|---|---|
abstract void |
ServiceDelegate.setExecutor(Executor executor)
Sets the executor for this Service instance. |
|
Java™ Platform Standard Ed. 7 DRAFT ea-b39 |
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Copyright 2008 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms.