
org.eclipse.scada.utils.concurrent.NotifyFutureImpl 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) 2013 Jens Reimann 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:
* Jens Reimann - initial API and implementation
*******************************************************************************/
package org.eclipse.scada.utils.concurrent;
/**
* An implementation of {@link NotifyFuture} which can publicly be accessed
*
* @since 1.1
*/
public class NotifyFutureImpl extends AbstractFuture
{
@Override
public void setError ( final Throwable error )
{
super.setError ( error );
}
@Override
public void setResult ( final T result )
{
super.setResult ( result );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy