The server-push-class Element"

From Documentation
(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.…')
 
m
Line 1: Line 1:
{{ZKConfigurationReferencePageHeader}}
+
{{ZKConfigurationReferencePageHeader}}
 +
 
 +
'''Syntax:'''
 +
<server-push-class>''a_class_name''</server-push-class>
  
 
  [Optional][Default: ''depends on device and what edition you use'']
 
  [Optional][Default: ''depends on device and what edition you use'']
Line 18: Line 21:
 
</source>
 
</source>
  
 
+
=Version History=
{{ZKConfigurationReferencePageFooter}}
+
{{LastUpdated}}
 +
{| border='1px' | width="100%"
 +
! Version !! Date !! Content
 +
|-
 +
| &nbsp;
 +
| &nbsp;
 +
| &nbsp;
 +
|}
 +
{{ZKConfigurationReferencePageFooter}}

Revision as of 14:38, 3 December 2010


The server-push-class Element


Syntax:

<server-push-class>a_class_name</server-push-class>
[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());

Version History

Last Update : 2010/12/03


Version Date Content
     


Last Update : 2010/12/03

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