Uses of Class
org.webmacro.resource.CacheReloadContext

Packages that use CacheReloadContext
org.webmacro.resource   
 

Uses of CacheReloadContext in org.webmacro.resource
 

Subclasses of CacheReloadContext in org.webmacro.resource
 class TimedReloadContext
          TimedReloadContext acts as an Decorator for Reload context to support cache resources that are expensive to check for change.
 

Methods in org.webmacro.resource that return CacheReloadContext
 CacheReloadContext ReloadDelayDecorator.decorate(java.lang.String protocol, CacheReloadContext reloadContext)
          Looks up the "check for reload delay" for protocol and creates a suitable TimedReloadContext or passes back the original reload context if delay <= 0
 

Methods in org.webmacro.resource with parameters of type CacheReloadContext
 void CacheElement.setReloadContext(CacheReloadContext rc)
           
 CacheReloadContext ReloadDelayDecorator.decorate(java.lang.String protocol, CacheReloadContext reloadContext)
          Looks up the "check for reload delay" for protocol and creates a suitable TimedReloadContext or passes back the original reload context if delay <= 0
 

Constructors in org.webmacro.resource with parameters of type CacheReloadContext
TimedReloadContext(CacheReloadContext reloadContext, long checkInterval)
          Construct a new TimedReloadContext decorator.