blob: 3f1c95b3c97591961709180e4deab7a5f836d56d [file] [log] [blame]
package org.eclipse.basyx.submodel.metamodel.api.submodelelement.operation;
/**
* An AsyncInvocation is used for asynchronously invoking operation
*
* @author conradi
*
*/
public interface IAsyncInvocation {
/**
* Gets the result of the async Invocation<br>
* Will block if execution is not finished yet
*
* @return the result of the Invocation
*/
public Object getResult();
/**
* Gets the status of the async Invocation
*
* @return true if execution is completed; false otherwise
*/
public boolean isFinished();
}