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
- Version:
- $Id: IMonitorFactory.java 243791 2004-02-19 17:38:13Z hlship $
- Author:
- Howard Lewis Ship
createMonitor
IMonitor createMonitor(RequestContext context)
- Create a new
IMonitor
instance. Alternately, return a shared instance.
This method may be invoked by multiple threads.