Path: blob/master/src/java.base/share/classes/sun/nio/ch/CompletedFuture.java
41159 views
/*1* Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package sun.nio.ch;2627import java.util.concurrent.Future;28import java.util.concurrent.TimeUnit;29import java.util.concurrent.ExecutionException;30import java.io.IOException;3132/**33* A Future representing the result of an I/O operation that has already34* completed.35*/3637final class CompletedFuture<V> implements Future<V> {38private final V result;39private final Throwable exc;4041private CompletedFuture(V result, Throwable exc) {42this.result = result;43this.exc = exc;44}4546static <V> CompletedFuture<V> withResult(V result) {47return new CompletedFuture<V>(result, null);48}4950static <V> CompletedFuture<V> withFailure(Throwable exc) {51// exception must be IOException or SecurityException52if (!(exc instanceof IOException) && !(exc instanceof SecurityException))53exc = new IOException(exc);54return new CompletedFuture<V>(null, exc);55}5657static <V> CompletedFuture<V> withResult(V result, Throwable exc) {58if (exc == null) {59return withResult(result);60} else {61return withFailure(exc);62}63}6465@Override66public V get() throws ExecutionException {67if (exc != null)68throw new ExecutionException(exc);69return result;70}7172@Override73public V get(long timeout, TimeUnit unit) throws ExecutionException {74if (unit == null)75throw new NullPointerException();76if (exc != null)77throw new ExecutionException(exc);78return result;79}8081@Override82public boolean isCancelled() {83return false;84}8586@Override87public boolean isDone() {88return true;89}9091@Override92public boolean cancel(boolean mayInterruptIfRunning) {93return false;94}95}969798