|
|
Clear ()
|
/* Clears (empties) the entire handler cache. */
|
|
|
INTEGER HandleRequest (character)
|
/* Handles a web request. A customer can specify a different handler for
each application. If this is the first request for this handler or the
handler is invalaid, an instance of it is created.
The HandleRequest() method is then invoked.
@param pcHandlerName the name of the customer registered webspeed handler */
|
|
|
Progress.Web.IWebHandler InvokeHandler (character)
|
/* Invokes/instantiates a webhandler
@param character The webhandler name
@return IWebHandler A usable webhandler instance */
|
|
|
LOGICAL Release (character)
|
/* Releases the specified handler from the cache. This lets it be cleaned up/GC'ed.
@param character The handler to release.
@return true if the instance was found and released. otherwise false. */
|