org.zkoss.zkmax.ui.comet
Class CometServerPush

java.lang.Object
  extended by org.zkoss.zkex.ui.comet.CometServerPush
      extended by org.zkoss.zkmax.ui.comet.CometServerPush
All Implemented Interfaces:
ServerPush

public class CometServerPush
extends CometServerPush

ZK Comet that supports Servlet 3 aynchronous processing. This implementation will detect if the server supports Servlet 3, and then use the right implementation automatically.

Since:
6.0.0
Author:
tomyeh

Nested Class Summary
 
Nested classes/interfaces inherited from class org.zkoss.zkex.ui.comet.CometServerPush
CometServerPush.AsyncInfo
 
Constructor Summary
CometServerPush()
          The default constructor.
CometServerPush(boolean async)
           
 
Method Summary
protected  java.lang.String getStartScript()
          Returns the JavaScript codes to enable (aka., start) the server push.
protected  java.lang.String getStopScript()
          Returns the JavaScript codes to disable (aka., stop) the server push.
protected  void onStart()
          Called when CometServerPush.start(org.zkoss.zk.ui.Desktop) is called.
protected  void processRequest(Execution exec, CometServerPush.AsyncInfo ai)
          Called when receiving the comet request from the client.
protected  boolean setBusy()
          Sets busy and return if it is busy for processing other request.
 void start(Desktop desktop)
          Starts the server push.
 
Methods inherited from class org.zkoss.zkex.ui.comet.CometServerPush
activate, deactivate, getDesktop, isActive, onPiggyback, onStop, schedule, startClientPush, stop, stopClientPush
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CometServerPush

public CometServerPush()
The default constructor. It detects if the server supports Servlet 3, and then use the right implementation accordingly.

If you prefer to disable the use of Servlet 3 or vice versa, you could specify a library property called org.zkoss.zkmax.ui.comet.async.disabled. Notice that enabling the asynchronous support in a server not supporting Servlet 3 is not allowed.


CometServerPush

public CometServerPush(boolean async)
Parameters:
async - whether to utilities Servlet 3 asynchronous processing support. Don't specify it to true if the server doesn't support Servlet 3. The result is unexpectable.
Method Detail

start

public void start(Desktop desktop)
Description copied from class: CometServerPush
Starts the server push.

The derived class rarely need to override this method. Rather, override CometServerPush.startClientPush().

Specified by:
start in interface ServerPush
Overrides:
start in class CometServerPush

getStartScript

protected java.lang.String getStartScript()
Description copied from class: CometServerPush
Returns the JavaScript codes to enable (aka., start) the server push. It is called by CometServerPush.startClientPush() to prepare the script of AuScript that will be sent to the client.

Overrides:
getStartScript in class CometServerPush

getStopScript

protected java.lang.String getStopScript()
Description copied from class: CometServerPush
Returns the JavaScript codes to disable (aka., stop) the server push. It is called by CometServerPush.stopClientPush() to prepare the script of AuScript that will be sent to the client.

Overrides:
getStopScript in class CometServerPush

onStart

protected void onStart()
Description copied from class: CometServerPush
Called when CometServerPush.start(org.zkoss.zk.ui.Desktop) is called. This method is called before CometServerPush.startClientPush(), and used to initialize the desktop, if necessary.

The default implementation initializes an extension to process the comet request.

Overrides:
onStart in class CometServerPush

setBusy

protected boolean setBusy()
Description copied from class: CometServerPush
Sets busy and return if it is busy for processing other request. If it is busy, true is returned. If it is not busy, false is returned but it is marked as busy.

It is possible since the client might abort the previous one and issue a new one but ther server didn't know.

Overrides:
setBusy in class CometServerPush

processRequest

protected void processRequest(Execution exec,
                              CometServerPush.AsyncInfo ai)
                       throws java.io.IOException
Called when receiving the comet request from the client.

Overrides:
processRequest in class CometServerPush
Throws:
java.io.IOException


Copyright © 2005-2011 Potix Corporation. All Rights Reserved. SourceForge.net Logo