org.directwebremoting.extend.ServerLoadMonitor Maven / Gradle / Ivy
Show all versions of dwr Show documentation
package org.directwebremoting.extend;
/**
* Polling or Comet style interactive web applications require something to
* monitor high levels of server load to ensure that
* @author Joe Walker [joe at getahead dot ltd dot uk]
*/
public interface ServerLoadMonitor
{
/**
* If the server is not going to be streaming then we need to tell browsers
* to just use XHR rather than anything fancier.
* @return true if the server will be supporting streaming
*/
boolean supportsStreaming();
/**
* Controller for poll times.
* TODO: We should probably get rid of this and leave it to BasePollHandler?
* @return How long should this client wait until it next polls?
*/
int getDisconnectedTime();
/**
* What's the longest time that we should wait before asking the client to
* reconnect?
* @return The maximum client connected time
*/
long getConnectedTime();
/**
* A thread is about to begin a wait period.
* This can be used by implementations to dynamically adjust the poll
* timings.
* @param controller An object that we can use to control the wait
*/
void threadWaitStarting(WaitController controller);
/**
* A thread has just ended a wait period.
* This can be used by implementations to dynamically adjust the poll
* timings.
* @param controller An object that we can use to control the wait
*/
void threadWaitEnding(WaitController controller);
}