Package lumis.portal.page.cache
Interface IPageCacheQueueResolver
-
- All Known Implementing Classes:
DefaultPageCacheQueueResolver
public interface IPageCacheQueueResolver
Resolves the generation queue to be used for the cache of a web resource.When a web resource is created, the queue for its cache is resolved by the implementation of this interface configured for the corresponding structure. The configuration is done by specifying a property called
lumis.portal.page.cache.IPageCacheQueueResolver
with the name of the class as the value.- Since:
- 6.0.0
- Version:
- $Revision$ $Date$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
resolveQueue(WebResource webResource)
Resolves the queue to be used for the cache of a web resource.
-
-
-
Method Detail
-
resolveQueue
java.lang.String resolveQueue(WebResource webResource)
Resolves the queue to be used for the cache of a web resource.- Parameters:
webResource
- the web resource.- Returns:
- the resolved queue id. If
null
, the default queue id will be used. - Since:
- 6.0.0
-
-