Package de.uplanet.lucy.server.polling
Interface IPollingService
-
public interface IPollingService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addEndpoint(String p_strKey, IPollingEndpoint p_endpoint)
Add a new polling endpoint.IPollingEndpoint
getEndpoint(String p_strKey)
Get the endpoint with the given key.boolean
hasEndpoint(String p_strKey)
Check if the service has a polling endpoint with the given key.IPollingEndpoint
removeEndpoint(String p_strKey)
Get the endpoint with the given key.
-
-
-
Method Detail
-
hasEndpoint
boolean hasEndpoint(String p_strKey)
Check if the service has a polling endpoint with the given key.- Parameters:
p_strKey
- The key.- Returns:
-
getEndpoint
IPollingEndpoint getEndpoint(String p_strKey)
Get the endpoint with the given key.- Parameters:
p_strKey
- The key.- Returns:
- The polling endpoint, or
null
if the service does not have an endpoint with the given key.
-
addEndpoint
void addEndpoint(String p_strKey, IPollingEndpoint p_endpoint)
Add a new polling endpoint.- Parameters:
p_strKey
- The key.p_endpoint
- The polling endpoint.- Throws:
IllegalStateException
- If the service already contains an endpoint with the given key.
-
removeEndpoint
IPollingEndpoint removeEndpoint(String p_strKey)
Get the endpoint with the given key.- Parameters:
p_strKey
- The key.- Returns:
- The removed polling endpoint, or
null
if the service does not have an endpoint with the given key.
-
-