HydraExpress™ C++ 2019 |
HydraExpress™ C++ API Reference Guide |
Product Documentation: HydraExpress C++ Documentation Home |
Base class for listeners that receive servlet context notifications. More...
#include <rwsf/servlet/ServletContextListener.h>
Public Member Functions | |
virtual | ~ServletContextListener () |
virtual void | contextDestroyed (const rwsf::ServletContextEvent &event)=0 |
virtual void | contextInitialized (const rwsf::ServletContextEvent &event)=0 |
rwsf::ServletContextListener is an abstract base class for listeners that receive notifications when the Agent creates or destroys rwsf::ServletContext objects. To create a listener, derive from this class and override the functions that receive events, contextInitialized() and contextDestroyed(). To register a listener, include a deployment descriptor for the listener class in the configuration file of the context. For information on servlet contexts, please see the chapter on servlet concepts in the Servlet Development Guide. For example, the following line in web.xml
registers an rwsf::ServletContextListener to a servlet context:
|
virtual |
Destructor.
|
pure virtual |
The Agent calls this method when this rwsf::ServletContext goes out of scope. This method does any clean up the listener needs to perform.
|
pure virtual |
This method gets called by the Agent when an rwsf::ServletContext object has just been created and rwsf::ServletContext is ready to start processing requests.
Copyright © 2019 Rogue Wave Software, Inc. All Rights Reserved. |