com.ibm.websphere.als
Class BufferManager
- java.lang.Object
com.ibm.websphere.als.BufferManager
All implemented interfaces:
ApplicationListener, ServletInvocationListener, java.util.EventListener
Deprecated.
- public class BufferManager
- extends java.lang.Object
- implements ApplicationListener, ServletInvocationListener
Constructor Summary
Constructor and Description |
---|
BufferManager(javax.servlet.ServletContext sc,Logger l,int maxEntries)
Deprecated.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
flush()
Deprecated.
|
getLogger()
Deprecated.
|
|
|
getSize()
Deprecated.
|
|
log(LogRecord rec)
Deprecated.
|
|
onApplicationAvailableForService(ApplicationEvent evt)
Deprecated. Triggered when the application is activated to receive external requests.
|
|
onApplicationEnd(ApplicationEvent evt)
Deprecated. Final application event that occurs before the application is terminated by the server process.
|
|
onApplicationStart(ApplicationEvent evt)
Deprecated. Triggered when the application is started.
|
|
onApplicationUnavailableForService(ApplicationEvent evt)
Deprecated. Triggered when the application is taken offline.
|
|
onServletFinishService(ServletInvocationEvent evt)
Deprecated. Triggered just after the execution of Servlet.service().
|
|
onServletStartService(ServletInvocationEvent evt)
Deprecated. Triggered just prior to the execution of Servlet.service().
|
|
terminate()
Deprecated.
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail
BufferManager
- public BufferManager(javax.servlet.ServletContext sc,
- Logger l,
- int maxEntries)
Deprecated.
Method Detail
log
- public void log(LogRecord rec)
- throws java.lang.Exception
Deprecated.
Throws:
java.lang.Exception
flush
- public void flush()
- throws java.lang.Exception
Deprecated.
Throws:
java.lang.Exception
getLogger
- public Logger getLogger()
Deprecated.
onApplicationAvailableForService
- public void onApplicationAvailableForService( ApplicationEvent evt)
Deprecated.
Triggered when the application is activated to receive external requests.
Specified by:
onApplicationAvailableForService
in interface ApplicationListener
onApplicationStart
- public void onApplicationStart( ApplicationEvent evt)
Deprecated.
Description copied from interface:
ApplicationListener
Triggered when the application is started.
This event is triggered before any object initializations occur within the application
(including auto-start servlet initialization). This method is the perfect place for
applications to register for other events and to setup the application before any other
objects are created by the application.
Specified by:
onApplicationStart
in interface ApplicationListener
onApplicationUnavailableForService
- public void onApplicationUnavailableForService( ApplicationEvent evt)
Deprecated.
Description copied from interface:
ApplicationListener
Triggered when the application is taken offline.
When an application is taken offline, all requests to the application
will be denied.
Specified by:
onApplicationUnavailableForService
in interface ApplicationListener
onApplicationEnd
- public void onApplicationEnd(ApplicationEvent evt)
Deprecated.
Description copied from interface:
ApplicationListener
Final application event that occurs before the application is terminated by the server process.
Specified by:
onApplicationEnd
in interface ApplicationListener
onServletStartService
- public void onServletStartService( ServletInvocationEvent evt)
Deprecated.
Description copied from interface:
ServletInvocationListener
Triggered just prior to the execution of Servlet.service().
Specified by:
onServletStartService
in interface ServletInvocationListener
See Also:
javax.servlet.service
onServletFinishService
- public void onServletFinishService( ServletInvocationEvent evt)
Deprecated.
Description copied from interface:
ServletInvocationListener
Triggered just after the execution of Servlet.service().
Specified by:
onServletFinishService
in interface ServletInvocationListener
See Also:
javax.servlet.service
terminate
- public void terminate()
Deprecated.
getSize
- public int getSize()
Deprecated.
ApplicationListener