org.apache.tapestry.engine
Interface IMonitorFactory
- All Known Implementing Classes:
- DefaultMonitorFactory
public interface IMonitorFactory
Interface for an object that can create a IMonitor
instance for a particular
RequestContext
. The engine expects there to be a monitor
factory as application extension org.apache.tapestry.monitor-factory
. If no such
extension exists, then DefaultMonitorFactory
is used instead.
- Since:
- 3.0
- Author:
- Howard Lewis Ship
createMonitor
IMonitor createMonitor(WebRequest request)
- Create a new
IMonitor
instance. Alternately, return a shared instance. This method
may be invoked by multiple threads.