Package jadex.bridge.service
Interface IRequiredServiceFetcher
- 
public interface IRequiredServiceFetcherInterface for fetching required services. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> TgetLastService()Get the result of the last search.<T> java.util.Collection<T>getLastServices()Get the result of the last search.<T> IFuture<T>getService(RequiredServiceInfo info)Get a required service.<T> ITerminableIntermediateFuture<T>getServices(RequiredServiceInfo info)Get a required multi service. 
 - 
 
- 
- 
Method Detail
- 
getService
<T> IFuture<T> getService(RequiredServiceInfo info)
Get a required service.- Parameters:
 info- The service info.provider- The provider.rebind- Flag if should be rebound.
 
- 
getServices
<T> ITerminableIntermediateFuture<T> getServices(RequiredServiceInfo info)
Get a required multi service.- Parameters:
 info- The service info.provider- The provider.rebind- Flag if should be rebound.
 
- 
getLastService
<T> T getLastService()
Get the result of the last search. 
- 
getLastServices
<T> java.util.Collection<T> getLastServices()
Get the result of the last search. 
 - 
 
 -