org.zkoss.zk.ui.event.impl.EventQueueProvider Maven / Gradle / Ivy
/* EventQueueProvider.java
Purpose:
Description:
History:
Thu Jul 23 19:33:00 2009, Created by tomyeh
Copyright (C) 2009 Potix Corporation. All Rights Reserved.
*/
package org.zkoss.zk.ui.event.impl;
import org.zkoss.zk.ui.WebApp;
import org.zkoss.zk.ui.Session;
import org.zkoss.zk.ui.event.*;
/**
* Used to instantiate an event queue.
* @author tomyeh
* @since 5.0.0
*/
public interface EventQueueProvider {
/** Returns the event queue with the specified name in the
* specified scope.
*
* Note:
*
* - This method can be called only in an activated execution,
* i.e., {@link org.zkoss.zk.ui.Executions#getCurrent} not null.
* - By default, {@link EventQueueProviderImpl} is used.
* To customize it, refer to {@link EventQueues}.
*
*
* @param name the name of the event queue.
* @param scope the scope of the event queue.
* It must support {@link EventQueues#DESKTOP} and {@link EventQueues#APPLICATION}.
* Developers might extend it to support other types of event queues.
* @param autoCreate whether to create the event queue if not found.
* @return the event queue with the associated name, or null if
* not found and autoCreate is false
* @exception IllegalStateException if not in an activated execution
* @exception UnsupportedOperationException if the scope is not supported
*/
public EventQueue lookup(String name, String scope, boolean autoCreate);
/** Returns the event queue with the specified name in the
* give session (i.e., the scope).
* Unlike {@link #lookup(String, String, boolean)}, this method
* can be called without an activated execution.
* @param sess the session that the event queue is located (i.e.,
* the scope)
* @since 5.0.2
*/
public EventQueue lookup(String name, Session sess, boolean autoCreate);
/** Returns the event queue with the specified name in the
* give application (i.e., the scope).
* Unlike {@link #lookup(String, String, boolean)}, this method
* can be called without an activated execution.
* @param wapp the Web application that the event queue is located (i.e.,
* the scope)
* @since 5.0.2
*/
public EventQueue lookup(String name, WebApp wapp, boolean autoCreate);
/** Removes the event queue.
* @param name the name of the event queue.
* @param scope the scope of the event queue.
* It must support {@link EventQueues#DESKTOP} and {@link EventQueues#APPLICATION}.
* Developers might extend it to support other types of event queues.
* @return true if it is removed successfully
*/
public boolean remove(String name, String scope);
/** Removes the event queue of the specified session.
* Unlike {@link #remove(String, String)}, this method
* can be called without an activated execution.
* @param name the queue name.
* @param sess the session that the event queue is located (i.e.,
* the session scope)
* @return true if it is removed successfully
* @since 5.0.4
*/
public boolean remove(String name, Session sess);
/** Removes the event queue of the specified application.
*
Unlike {@link #remove(String, String)}, this method
* can be called without an activated execution.
* @param name the queue name.
* @param wapp the Web application that the event queue is located (i.e.,
* the application scope)
* @return true if it is removed successfully
* @since 5.0.4
*/
public boolean remove(String name, WebApp wapp);
}