Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Package | Description |
---|---|
java.nio.channels | Defines channels, which represent connections to entities that are capable of performing I/O operations, such as files and sockets; defines selectors, for multiplexed, non-blocking I/O operations. |
java.util.concurrent | Utility classes commonly useful in concurrent programming. |
javax.swing | Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. |
javax.xml.ws | This package contains the core JAX-WS APIs. |
Uses of Future in java.nio.channels |
---|
Modifier and Type | Method and Description |
---|---|
abstract Future<AsynchronousSocketChannel> |
AsynchronousServerSocketChannel.accept()
Accepts a connection. |
abstract Future<Void> |
AsynchronousSocketChannel.connect(SocketAddress remote)
Connects this channel. |
Future<FileLock> |
AsynchronousFileChannel.lock()
Acquires an exclusive lock on this channel's file. |
abstract Future<FileLock> |
AsynchronousFileChannel.lock(long position,
long size,
boolean shared)
Acquires a lock on the given region of this channel's file. |
abstract Future<Integer> |
AsynchronousSocketChannel.read(ByteBuffer dst)
|
Future<Integer> |
AsynchronousByteChannel.read(ByteBuffer dst)
Reads a sequence of bytes from this channel into the given buffer. |
abstract Future<Integer> |
AsynchronousFileChannel.read(ByteBuffer dst,
long position)
Reads a sequence of bytes from this channel into the given buffer, starting at the given file position. |
abstract Future<Integer> |
AsynchronousSocketChannel.write(ByteBuffer src)
|
Future<Integer> |
AsynchronousByteChannel.write(ByteBuffer src)
Writes a sequence of bytes to this channel from the given buffer. |
abstract Future<Integer> |
AsynchronousFileChannel.write(ByteBuffer src,
long position)
Writes a sequence of bytes to this channel from the given buffer, starting at the given file position. |
Uses of Future in java.util.concurrent |
---|
Modifier and Type | Interface and Description |
---|---|
interface |
RunnableFuture<V>
A Future that is Runnable . |
interface |
RunnableScheduledFuture<V>
A ScheduledFuture that is Runnable . |
interface |
ScheduledFuture<V>
A delayed result-bearing action that can be cancelled. |
Modifier and Type | Class and Description |
---|---|
class |
ForkJoinTask<V>
Abstract base class for tasks that run within a ForkJoinPool . |
class |
FutureTask<V>
A cancellable asynchronous computation. |
class |
RecursiveAction
A recursive resultless ForkJoinTask . |
class |
RecursiveTask<V>
A recursive result-bearing ForkJoinTask . |
Modifier and Type | Method and Description | |
---|---|---|
Future<V> |
ExecutorCompletionService.poll()
|
|
Future<V> |
CompletionService.poll()
Retrieves and removes the Future representing the next completed task or null if none are present. |
|
Future<V> |
ExecutorCompletionService.poll(long timeout,
TimeUnit unit)
|
|
Future<V> |
CompletionService.poll(long timeout,
TimeUnit unit)
Retrieves and removes the Future representing the next completed task, waiting if necessary up to the specified wait time if none are yet present. |
|
|
ScheduledThreadPoolExecutor.submit(Callable<T> task)
|
|
|
AbstractExecutorService.submit(Callable<T> task)
|
|
|
ExecutorService.submit(Callable<T> task)
Submits a value-returning task for execution and returns a Future representing the pending results of the task. |
|
Future<V> |
ExecutorCompletionService.submit(Callable<V> task)
|
|
Future<V> |
CompletionService.submit(Callable<V> task)
Submits a value-returning task for execution and returns a Future representing the pending results of the task. |
|
Future<?> |
ScheduledThreadPoolExecutor.submit(Runnable task)
|
|
Future<?> |
AbstractExecutorService.submit(Runnable task)
|
|
Future<?> |
ExecutorService.submit(Runnable task)
Submits a Runnable task for execution and returns a Future representing that task. |
|
|
ScheduledThreadPoolExecutor.submit(Runnable task,
T result)
|
|
|
AbstractExecutorService.submit(Runnable task,
T result)
|
|
|
ExecutorService.submit(Runnable task,
T result)
Submits a Runnable task for execution and returns a Future representing that task. |
|
Future<V> |
ExecutorCompletionService.submit(Runnable task,
V result)
|
|
Future<V> |
CompletionService.submit(Runnable task,
V result)
Submits a Runnable task for execution and returns a Future representing that task. |
|
Future<V> |
ExecutorCompletionService.take()
|
|
Future<V> |
CompletionService.take()
Retrieves and removes the Future representing the next completed task, waiting if none are yet present. |
Modifier and Type | Method and Description | |
---|---|---|
|
ForkJoinPool.invokeAll(Collection<? extends Callable<T>> tasks)
|
|
|
AbstractExecutorService.invokeAll(Collection<? extends Callable<T>> tasks)
|
|
|
ExecutorService.invokeAll(Collection<? extends Callable<T>> tasks)
Executes the given tasks, returning a list of Futures holding their status and results when all complete. |
|
|
AbstractExecutorService.invokeAll(Collection<? extends Callable<T>> tasks,
long timeout,
TimeUnit unit)
|
|
|
ExecutorService.invokeAll(Collection<? extends Callable<T>> tasks,
long timeout,
TimeUnit unit)
Executes the given tasks, returning a list of Futures holding their status and results when all complete or the timeout expires, whichever happens first. |
Constructor and Description |
---|
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 Future in javax.swing |
---|
Modifier and Type | Class and Description |
---|---|
class |
SwingWorker<T,V>
An abstract class to perform lengthy GUI-interaction tasks in a background thread. |
Uses of Future in javax.xml.ws |
---|
Modifier and Type | Interface and Description |
---|---|
interface |
Response<T>
The Response interface provides methods used to obtain the
payload and context of a message sent in response to an operation
invocation. |
Modifier and Type | Method and Description |
---|---|
Future<?> |
Dispatch.invokeAsync(T msg,
AsyncHandler<T> handler)
Invoke a service operation asynchronously. |
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.