
org.eclipse.scada.utils.concurrent.InstantFuture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.scada.utils Show documentation
Show all versions of org.eclipse.scada.utils Show documentation
Utility classes for use throughout the Eclipse SCADA project
The newest version!
/*******************************************************************************
* Copyright (c) 2006, 2010 TH4 SYSTEMS GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* TH4 SYSTEMS GmbH - initial API and implementation
*******************************************************************************/
package org.eclipse.scada.utils.concurrent;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
/**
* A future that never has to run since the result is already known
*
* @author Jens Reimann
* @param
* the type of the future
*/
public class InstantFuture extends InstantFutureBase
{
private final T value;
public InstantFuture ( final T value )
{
this.value = value;
}
@Override
public T get () throws InterruptedException, ExecutionException
{
return this.value;
}
@Override
public T get ( final long timeout, final TimeUnit unit ) throws InterruptedException, ExecutionException, TimeoutException
{
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy