Event Firing"

From Documentation
Line 7: Line 7:
 
= Post an Event =
 
= Post an Event =
  
Posting is the most common way to trigger an event. By posting, the event is placed at the end of the system's queue<ref>Please don't confuse it with the [[ZK Developer's Reference/Event Handling/Event Queues| event queues]], which is application-specific, while the system's queue (of events) is invisible to application developers and there is exactly one system's queue per desktop.</ref>, while events stored in the system's queue is processed one-by-one in first-in-first-out order. Each desktop has one system event queue and all events are handled sequentially.
+
Posting is the most common way to trigger an event. By posting, the event is placed at the end of the system event queue<ref>Please don't confuse it with the event queues discussed in the [[ZK Developer's Reference/Event Handling/Event Queues| event queues]] section, which are application-specific, while the system event queue is invisible to application developers.</ref>, while events stored in the system event queue is processed one-by-one in first-in-first-out order. Each desktop has one system event queue and all events are handled sequentially.
  
 
To trigger an event, you could invoke <javadoc method="postEvent(java.lang.String, org.zkoss.zk.ui.Component, java.lang.Object)">org.zkoss.zk.ui.event.Events</javadoc>. For example,
 
To trigger an event, you could invoke <javadoc method="postEvent(java.lang.String, org.zkoss.zk.ui.Component, java.lang.Object)">org.zkoss.zk.ui.event.Events</javadoc>. For example,
Line 15: Line 15:
 
</source>
 
</source>
  
In additions to post an event to the end of the event queue, you could specify a priority with <javadoc method="postEvent(int, java.lang.String, org.zkoss.zk.ui.Component, java.lang.Object)">org.zkoss.zk.ui.event.Events</javadoc>. By default, the priority is 0. The higher the priority the earlier an event is processed.
+
In additions to post an event to the end of the system event queue, you could specify a priority with <javadoc method="postEvent(int, java.lang.String, org.zkoss.zk.ui.Component, java.lang.Object)">org.zkoss.zk.ui.event.Events</javadoc>. By default, the priority is 0. The higher the priority the earlier an event is processed.
  
Notice that the invocation returns after placing the event to the event queue. In other words, the event won't be processed unless all other events posted earlier or with higher priority are processed.
+
Notice that the invocation returns after placing the event to the system event queue. In other words, the event won't be processed unless all other events posted earlier or with higher priority are processed.
  
 
<blockquote>
 
<blockquote>

Revision as of 10:20, 2 December 2010

Events are usually fired (aka., triggered) by a component (when serving the user at the client). However, applications are allowed to fire events too.

There are three ways to trigger an event: post, send and echo.

Post an Event

Posting is the most common way to trigger an event. By posting, the event is placed at the end of the system event queue[1], while events stored in the system event queue is processed one-by-one in first-in-first-out order. Each desktop has one system event queue and all events are handled sequentially.

To trigger an event, you could invoke Events.postEvent(String, Component, Object). For example,

Events.postEvent("onClick", button, null); //simulate a click

In additions to post an event to the end of the system event queue, you could specify a priority with Events.postEvent(int, String, Component, Object). By default, the priority is 0. The higher the priority the earlier an event is processed.

Notice that the invocation returns after placing the event to the system event queue. In other words, the event won't be processed unless all other events posted earlier or with higher priority are processed.


  1. Please don't confuse it with the event queues discussed in the event queues section, which are application-specific, while the system event queue is invisible to application developers.

Send an Event

If you prefer to trigger an event to a component directly and process it immediately without going through the event queue, you could use Events.sendEvent(String, Component, Object) to trigger the event.

Events.sendEvent("onMyEvent", component, mydata);

Notice that the sendEvent method won't return until all handlers and listeners registered for this event has been processed. Also notice that the event handlers and listeners are invoked directly without starting any event thread (even if the event thread is enabled).

Echo an Event

Echoing is not really a way to trigger an event. Rather, it is a way to delay the posting of an event, until all events are processed, the response is sent back to the client, and a request is received.

More precisely, the event being echoed won't be queued into the event queue. Rather, it causes ZK to send back a special response that will cause the client to send back a request immediately. Furthermore, the request will then trigger the event at the server.

In other words, the event won't be processed in the current execution. Rather, it is processed in the following request when the event is echoed back from the client.

   Events.echoEvent("onMyEvent", component, mydata);

Event echoing is useful for implementing a long operation. HTTP is a request-and-response protocol, so the user won't see any feedback until the request has been served and responsed. Thus, if the processing of a request takes long to execute, the user has no idea if the request is being processed, or he doesn't, say, click the button successfully. The better approach is to send back some busy message to let the user know what happens, and then process the long operation. It can be done easily with event echoing. For more information, please refer to the Long Operations: Use Echo Events section.

Version History

Version Date Content
     



Last Update : 2010/12/02

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