jadex.webservice.examples.ws.quote.IQuoteService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-webservice Show documentation
Show all versions of jadex-applications-webservice Show documentation
The Jadex web service applications package contains several example applications, benchmarks and testcases using web service integration.
package jadex.webservice.examples.ws.quote;
import jadex.commons.future.IFuture;
/**
* Example web service interface in Jadex.
* The original synchronous web service interface
* is made asynchronous to fit the programming model
* and avoid deadlocks.
*/
public interface IQuoteService
{
/**
* Get a quote.
*/
public IFuture getQuote(String stock);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy