org.directwebremoting.impl
Class AbstractServerLoadMonitor

java.lang.Object
  extended by org.directwebremoting.impl.AbstractServerLoadMonitor
All Implemented Interfaces:
ServerLoadMonitor, UninitializingBean
Direct Known Subclasses:
DefaultServerLoadMonitor, PollingServerLoadMonitor, ThrottlingServerLoadMonitor

public abstract class AbstractServerLoadMonitor
extends java.lang.Object
implements ServerLoadMonitor, UninitializingBean

A base implementation of ServerLoadMonitor that implements waiting functionality, mostly to provide ServletContextListener.contextDestroyed(javax.servlet.ServletContextEvent)

Author:
Joe Walker [joe at getahead dot ltd dot uk]

Constructor Summary
AbstractServerLoadMonitor()
           
 
Method Summary
 void destroy()
          Called when Container.destroy() is called which usually happens when the DWR servlet is destroyed.
 void shutdownRandomWaitControllers(int count)
          If there are too many WaitControllers waiting then we can kill one off at random.
 void threadWaitEnding(WaitController controller)
          A thread has just ended a wait period.
 void threadWaitStarting(WaitController controller)
          A thread is about to begin a wait period.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.directwebremoting.extend.ServerLoadMonitor
getConnectedTime, getDisconnectedTime, supportsStreaming
 

Constructor Detail

AbstractServerLoadMonitor

public AbstractServerLoadMonitor()
Method Detail

destroy

public void destroy()
Description copied from interface: UninitializingBean
Called when Container.destroy() is called which usually happens when the DWR servlet is destroyed.

Specified by:
destroy in interface UninitializingBean

threadWaitStarting

public void threadWaitStarting(WaitController controller)
Description copied from interface: ServerLoadMonitor
A thread is about to begin a wait period. This can be used by implementations to dynamically adjust the poll timings.

Specified by:
threadWaitStarting in interface ServerLoadMonitor
Parameters:
controller - An object that we can use to control the wait

threadWaitEnding

public void threadWaitEnding(WaitController controller)
Description copied from interface: ServerLoadMonitor
A thread has just ended a wait period. This can be used by implementations to dynamically adjust the poll timings.

Specified by:
threadWaitEnding in interface ServerLoadMonitor
Parameters:
controller - An object that we can use to control the wait

shutdownRandomWaitControllers

public void shutdownRandomWaitControllers(int count)
If there are too many WaitControllers waiting then we can kill one off at random.

Parameters:
count - How many WaitControllers do we shutdown?

Copyright ยจ 2008