The server-push-class Element

From Documentation
Revision as of 08:16, 3 December 2010 by Char (talk | contribs) (Created page with ' {{ZKConfigurationReferencePageHeader}} [Optional][Default: ''depends on device and what edition you use''] It specifies which class used to implement the server-push feature.…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


The server-push-class Element


[Optional][Default: depends on device and what edition you use]

It specifies which class used to implement the server-push feature. The class must have a default constructor (without any argument), and implement the ServerPush interface.

 <device-config>
     <device-type>ajax</device-type>
     <server-push-class>my.ServerPush</server-push-class>
 </device-config>

In addition to configuring the application's default implementation, you can choose an implement for a particular class by use of DesktopCtrl.enableServerPush(ServerPush). For example,

((DesktopCtrl)desktop).enableServerPush(new org.zkoss.zk.ui.impl.PollingServerPush());



Last Update : 2010/12/03

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.