Package jadex.bridge
Interface ITargetResolver
- 
- All Known Implementing Classes:
- GlobalServicePoolTargetResolver
 
 public interface ITargetResolverThe target resolver is used to determine dynamically a new service target by an intelligent proxy.
- 
- 
Field SummaryFields Modifier and Type Field Description static java.lang.StringTARGETRESOLVERThe target resolver class (to dynamically resolve the called service).
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description IFuture<IService>determineTarget(IServiceIdentifier sid, IExternalAccess agent, IServiceIdentifier broken)Determine the target of a call.
 
- 
- 
- 
Field Detail- 
TARGETRESOLVERstatic final java.lang.String TARGETRESOLVER The target resolver class (to dynamically resolve the called service).- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
determineTargetIFuture<IService> determineTarget(IServiceIdentifier sid, IExternalAccess agent, IServiceIdentifier broken) Determine the target of a call.- Parameters:
- sid- The service identifier of the original call.
- agent- The external access.
- Returns:
- The new service that should be called instead of the original one.
 
 
- 
 
-