Searched defs:CompletedFuture (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DCompletedFuture.java38 public class CompletedFuture<T> implements Future<T> { class in inherits:Future
42 public CompletedFuture(T v, Throwable re) { method in class:CompletedFuture
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DCompletedFuture.java38 final class CompletedFuture<V> implements Future<V> { class in inherits:Future
42 private CompletedFuture(V result, Throwable exc) { method in class:CompletedFuture
47 static <V> CompletedFuture<V> withResult(V result) {
48 return new CompletedFuture<V>(result, null);
51 static <V> CompletedFuture<V> withFailure(Throwable exc) {
55 return new CompletedFuture<V>(null, exc);
58 static <V> CompletedFuture<V> withResult(V result, Throwable exc) {

Completed in 29 milliseconds