com.sun.xml.ws.util.CompletedFuture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-osgi Show documentation
Show all versions of webservices-osgi Show documentation
Metro Web Services Runtime OSGi Bundle
The newest version!
/*
* Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.util;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
/**
* {@link Future} implementation that obtains an already available value.
*
* @author Kohsuke Kawaguchi
* @author Jitendra Kotamraju
*/
public class CompletedFuture implements Future {
private final T v;
private final Throwable re;
public CompletedFuture(T v, Throwable re) {
this.v = v;
this.re = re;
}
@Override
public boolean cancel(boolean mayInterruptIfRunning) {
return false;
}
@Override
public boolean isCancelled() {
return false;
}
@Override
public boolean isDone() {
return true;
}
@Override
public T get() throws ExecutionException {
if (re != null) {
throw new ExecutionException(re);
}
return v;
}
@Override
public T get(long timeout, TimeUnit unit) throws ExecutionException {
return get();
}
}