Uses of Class
org.webmacro.resource.CacheReloadContext

Packages that use CacheReloadContext
org.webmacro.resource What's in this directory: -- Classes that relate to resources made available in the WebMacro system. 
 

Uses of CacheReloadContext in org.webmacro.resource
 

Subclasses of CacheReloadContext in org.webmacro.resource
static class TemplateProvider.FTReloadContext
          ReloadContext for file templates.
 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
 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
 void CacheElement.setReloadContext(CacheReloadContext rc)
           
 

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