Executions"

From Documentation
m (Created page with '{{ZKDevelopersGuidePageHeader}} [http://www.zkoss.org/javadoc/3.5.1/zk/org/zkoss/zk/ui/executions.html org.zkoss.zk.ui.Executions] :<tt>createComponents</tt> : Creates componen…')
 
m (correct highlight (via JWB))
 
Line 3: Line 3:
 
[http://www.zkoss.org/javadoc/3.5.1/zk/org/zkoss/zk/ui/executions.html org.zkoss.zk.ui.Executions]
 
[http://www.zkoss.org/javadoc/3.5.1/zk/org/zkoss/zk/ui/executions.html org.zkoss.zk.ui.Executions]
  
:<tt>createComponents</tt> : Creates components from a page file specified by an URI.
+
:<code>createComponents</code> : Creates components from a page file specified by an URI.
  
:<tt>getCurrent</tt> : Returns the current execution.
+
:<code>getCurrent</code> : Returns the current execution.
  
:<tt>getCurrent().getParameter</tt> : Returns the value of a request parameter as a String
+
:<code>getCurrent().getParameter</code> : Returns the value of a request parameter as a String
  
:<tt>forward</tt> : A shortcut of Executions.getCurrent().forward(page).
+
:<code>forward</code> : A shortcut of Executions.getCurrent().forward(page).
  
:<tt>sendRedirect</tt> : Sends a temporary redirect response to the client using the specified redirect location URL.
+
:<code>sendRedirect</code> : Sends a temporary redirect response to the client using the specified redirect location URL.
  
:<tt>wait</tt> : Suspends the current processing of an event and wait notify for the specified object.
+
:<code>wait</code> : Suspends the current processing of an event and wait notify for the specified object.
  
:<tt>notify</tt> : Wakes up a single event processing thread that is waiting on the specified object.
+
:<code>notify</code> : Wakes up a single event processing thread that is waiting on the specified object.
  
:<tt>activate</tt> : Activates a server-push thread.
+
:<code>activate</code> : Activates a server-push thread.
  
:<tt>deactivate</tt> : Deactivates a server-push thread.
+
:<code>deactivate</code> : Deactivates a server-push thread.
  
 
{{ ZKDevelopersGuidePageFooter}}
 
{{ ZKDevelopersGuidePageFooter}}

Latest revision as of 10:40, 19 January 2022

Stop.png This documentation is for an older version of ZK. For the latest one, please click here.


org.zkoss.zk.ui.Executions

createComponents : Creates components from a page file specified by an URI.
getCurrent : Returns the current execution.
getCurrent().getParameter : Returns the value of a request parameter as a String
forward : A shortcut of Executions.getCurrent().forward(page).
sendRedirect : Sends a temporary redirect response to the client using the specified redirect location URL.
wait : Suspends the current processing of an event and wait notify for the specified object.
notify : Wakes up a single event processing thread that is waiting on the specified object.
activate : Activates a server-push thread.
deactivate : Deactivates a server-push thread.



Last Update : 2022/01/19

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