Inter-Desktop Communication"
m (remove empty version history (via JWB)) |
|||
(10 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{ZKDevelopersReferencePageHeader}} | {{ZKDevelopersReferencePageHeader}} | ||
− | Unlike pages, you cannot access two desktops at the same time. You cannot send or post an event from one desktop to another directly | + | Unlike pages, you cannot access two desktops at the same time. You cannot send or post an event from one desktop to another directly either. Rather, we have to use [[ZK Developer's Reference/Event Handling/Event Queues|an event queue]] with a proper scope, such as group, session or application -- depending on where the other desktop is located. |
=Desktops in the Same Browser Window= | =Desktops in the Same Browser Window= | ||
− | In most cases, | + | In most cases, each browser window has at most one desktop. However, it is still possible to have multiple desktops in one browser window: |
* Use HTML IFRAME or FRAMESET to integrate multiple ZUML pages | * Use HTML IFRAME or FRAMESET to integrate multiple ZUML pages | ||
− | * Use a portal server to integrate multiple ZK | + | * Use a portal server to integrate multiple ZK portlets |
− | * | + | * Assemble multiple ZUML pages at the client, such as the templating technology described in [[ZK Developer's Reference/Integration/Use ZK as Fragment in Foreign Templating Framework|this section]] |
− | In this case, you could communicate among desktops by use of an event queue with the group scope. | + | In this case, you could communicate among desktops by the use of an event queue with the group scope (<javadoc method="GROUP">org.zkoss.zk.ui.event.EventQueues</javadoc>). |
− | <source lang="java" | + | <source lang="java" highlight="1"> |
EventQueue que = EventQueues.lookup("groupTest", EventQueues.GROUP, true); | EventQueue que = EventQueues.lookup("groupTest", EventQueues.GROUP, true); | ||
que.subscribe(new EventListener() { | que.subscribe(new EventListener() { | ||
Line 21: | Line 21: | ||
}); | }); | ||
</source> | </source> | ||
+ | |||
+ | Notice that the desktop-scoped event queue does not require [[ZK Developer's Reference/Server Push|Server Push]], so there is no performance impact at all. | ||
Here is a dumb example: chat among iframes. | Here is a dumb example: chat among iframes. | ||
− | <source lang="xml" | + | <source lang="xml" highlight="4"> |
<!-- main --> | <!-- main --> | ||
<window title="main" border="normal" onOK="publish()"> | <window title="main" border="normal" onOK="publish()"> | ||
Line 85: | Line 87: | ||
</source> | </source> | ||
− | + | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{{ZKDevelopersReferencePageFooter}} | {{ZKDevelopersReferencePageFooter}} |
Latest revision as of 05:54, 6 February 2024
Unlike pages, you cannot access two desktops at the same time. You cannot send or post an event from one desktop to another directly either. Rather, we have to use an event queue with a proper scope, such as group, session or application -- depending on where the other desktop is located.
Desktops in the Same Browser Window
In most cases, each browser window has at most one desktop. However, it is still possible to have multiple desktops in one browser window:
- Use HTML IFRAME or FRAMESET to integrate multiple ZUML pages
- Use a portal server to integrate multiple ZK portlets
- Assemble multiple ZUML pages at the client, such as the templating technology described in this section
In this case, you could communicate among desktops by the use of an event queue with the group scope (EventQueues.GROUP).
EventQueue que = EventQueues.lookup("groupTest", EventQueues.GROUP, true);
que.subscribe(new EventListener() {
public void onEvent(Event evt) {
//receive event from this event queue (within the same group of desktops)
}
});
Notice that the desktop-scoped event queue does not require Server Push, so there is no performance impact at all.
Here is a dumb example: chat among iframes.
<!-- main -->
<window title="main" border="normal" onOK="publish()">
<zscript>
EventQueue que = EventQueues.lookup("groupTest", "group", true);
que.subscribe(new EventListener() {
public void onEvent(Event evt) {
o.setValue(o.getValue() + evt.getData() + "\n");
}
});
void publish() {
String text = i.getValue();
if (text.length() > 0) {
i.setValue("");
que.publish(new Event("onGroupTest", null, text));
}
}
</zscript>
Please enter:
<textbox id="i" onChange="publish()"/>
<textbox id="o" rows="6"/>
<separator/>
<iframe src="includee.zul" height="500px" width="30%"/>
<iframe src="includee.zul" height="500px" width="30%"/>
<iframe src="includee.zul" height="500px" width="30%"/>
</window>
And, this is the ZUML page being referenced (by iframe).
<!-- includee.zul -->
<window title="frame2" border="normal" onOK="publish()">
<zscript>
EventQueue que = EventQueues.lookup("groupTest", "group", true);
que.subscribe(new EventListener() {
public void onEvent(Event evt) {
o.setValue(o.getValue() + evt.getData() + "\n");
}
});
void publish() {
String text = i.getValue();
if (text.length() > 0) {
i.setValue("");
que.publish(new Event("onGroupTest", null, text));
}
}
</zscript>
<textbox id="i" onChange="publish()"/>
<textbox id="o" rows="6"/>
</window>
Desktop in Different Sessions
Similarly, we could use an event queue to communicate among desktops belonging to different sessions. The only difference is to specify EventQueues.APPLICATION as the scope.
EventQueue que = EventQueues.lookup("groupTest", EventQueues.APPLICATION, true);