org.apache.tapestry.services
Interface EngineManager

All Known Implementing Classes:
EngineManagerImpl

public interface EngineManager

Service responsible for obtaining instances of IEngine to service the current request. An engine service may be retrieved from a pool, or extracted from the HttpSession. After the request is processed, the engine is re-stored into the HttpSession (if stateful) or back into the pool (if not stateful).

Since:
4.0
Author:
Howard Lewis Ship

Method Summary
 IEngine getEngineInstance()
          Locates or creates an engine instance for the current request.
 void storeEngineInstance(IEngine engine)
          Store the engine back at the end of the current request.
 

Method Detail

getEngineInstance

IEngine getEngineInstance()
Locates or creates an engine instance for the current request.


storeEngineInstance

void storeEngineInstance(IEngine engine)
Store the engine back at the end of the current request.



Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.