org.apache.jasper.runtime
Class PerThreadTagHandlerPool
public class PerThreadTagHandlerPool
Thread-local based pool of tag handlers that can be reused.
- Jan Luehe
- Costin Manolache
Tag | get(Class handlerClass) - Gets the next available tag handler from this tag handler pool,
instantiating one if this tag handler pool is empty.
|
protected void | init(ServletConfig config)
|
void | release() - Calls the release() method of all tag handlers in this tag handler pool.
|
void | reuse(Tag handler) - Adds the given tag handler to this tag handler pool, unless this tag
handler pool has already reached its capacity, in which case the tag
handler's release() method is called.
|
PerThreadTagHandlerPool
public PerThreadTagHandlerPool()
Constructs a tag handler pool with the default capacity.
get
public Tag get(Class handlerClass)
throws JspException
Gets the next available tag handler from this tag handler pool,
instantiating one if this tag handler pool is empty.
- get in interface TagHandlerPool
handlerClass
- Tag handler class
- Reused or newly instantiated tag handler
release
public void release()
Calls the release() method of all tag handlers in this tag handler pool.
- release in interface TagHandlerPool
reuse
public void reuse(Tag handler)
Adds the given tag handler to this tag handler pool, unless this tag
handler pool has already reached its capacity, in which case the tag
handler's release() method is called.
- reuse in interface TagHandlerPool
handler
- Tag handler to add to this tag handler pool
Copyright ?? 2000-2004 Apache Software Foundation. All Rights Reserved.