Package i5.las2peer.p2p
Class NodeServiceCache
java.lang.Object
i5.las2peer.p2p.NodeServiceCache
Caches the knowledge about existing services
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclass
represents an instance of a service agent -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
clears the global cache (needed for units tests)getLocalService
(ServiceNameVersion service) Gets a locally registered service agentgetLocalServiceVersions
(String serviceName) getServiceAgentInstance
(ServiceNameVersion service, boolean exact, boolean localOnly, AgentImpl acting) returns a service agent instance.void
register a local servicevoid
removes a global service instance to be called when an instance is detected as not availablevoid
setLifeTimeSeconds
(int c) void
setTimeoutMs
(int timeoutMs) void
setWaitForResults
(int c) void
unregister a local service
-
Constructor Details
-
NodeServiceCache
-
-
Method Details
-
setWaitForResults
public void setWaitForResults(int c) -
setLifeTimeSeconds
public void setLifeTimeSeconds(int c) -
setTimeoutMs
public void setTimeoutMs(int timeoutMs) -
clear
public void clear()clears the global cache (needed for units tests) -
getServiceAgentInstance
public NodeServiceCache.ServiceInstance getServiceAgentInstance(ServiceNameVersion service, boolean exact, boolean localOnly, AgentImpl acting) throws AgentNotRegisteredException returns a service agent instance. whenever possible, a local version is preferred. it returns the newest version "available", where "available" does not refer to the network but to the set of service instances matching other parameters (node load, response time, ...)- Parameters:
service
- the requested serviceexact
- forces an exact version matchlocalOnly
- only look for local servicesacting
- an acting agent invoking the service- Returns:
- any service agent matching the requirements
- Throws:
AgentNotRegisteredException
- If the service agent is not registered
-
removeGlobalServiceInstance
removes a global service instance to be called when an instance is detected as not available- Parameters:
instance
- A service instance to remove
-
registerLocalService
register a local service- Parameters:
agent
- A service agent to register
-
unregisterLocalService
unregister a local service- Parameters:
agent
- A service agent to unregister
-
getLocalService
public ServiceAgentImpl getLocalService(ServiceNameVersion service) throws AgentNotRegisteredException Gets a locally registered service agent- Parameters:
service
- name and exact version of the service- Returns:
- Returns the local service agent instance
- Throws:
AgentNotRegisteredException
- If no agent is registered
-
getLocalServiceNames
-
getLocalServiceVersions
-