All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.bridge.component.IExternalArgumentsResultsFeature Maven / Gradle / Ivy

Go to download

Jadex bridge is a base package for kernels and platforms, i.e., it is used by both and provides commonly used interfaces and classes for active components and their management.

There is a newer version: 4.0.267
Show newest version
package jadex.bridge.component;

import java.util.Map;

import jadex.commons.Tuple2;
import jadex.commons.future.IFuture;
import jadex.commons.future.ISubscriptionIntermediateFuture;

/**
 * 
 */
public interface IExternalArgumentsResultsFeature extends IExternalComponentFeature
{
	/**
	 *  Get the component results.
	 *  @return The results.
	 */
	public IFuture> getResultsAsync();
	
	/**
	 *  Get the arguments.
	 *  @return The arguments.
	 */
	public IFuture> getArgumentsAsync();
	
	/**
	 *  Get the exception, if any.
	 *  @return The failure reason for use during cleanup, if any.
	 */
	public IFuture getExceptionAsync();
	
	/**
	 * Subscribe to receive results.
	 */
	public ISubscriptionIntermediateFuture> subscribeToResults();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy