All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zkoss.zkex.zul.impl.Operation Maven / Gradle / Ivy

/* Operation.java

{{IS_NOTE
	Purpose:
		
	Description:
		
	History:
		Sep 29, 2007 9:20:35 AM     2007, Created by Dennis.Chen
}}IS_NOTE

Copyright (C) 2007 Potix Corporation. All Rights Reserved.

{{IS_RIGHT
	This program is distributed under GPL Version 2.0 in the hope that
	it will be useful, but WITHOUT ANY WARRANTY.
}}IS_RIGHT
*/
package org.zkoss.zkex.zul.impl;

import org.zkoss.zk.ui.Desktop;

/**
 * This interface is for model sharer developer only, you rarely need to use this interface.
* A model sharer will add Operation to {@link OperationQueue}, then {@link OperationThread} which monitor this queue * will consume operations and {@link #execute(Desktop)} it.
* The method {@link #failToExecute(Desktop)} will be invoked when *
    *
  1. Any Exception occurs when execute
  2. *
  3. Thread is terminate by {@link OperationThread#terminate()}
  4. *
  5. Desktop is no longer available
  6. *
* * * @author Dennis.Chen * @since 3.0.0 */ public interface Operation { /** * Execute the operation.
* The {@link OperationThread} will activate desktop first, * then call this method, and then call deactivate.
* @param desktop the desktop which {@link OperationThread} associate to. */ public void execute(Desktop desktop); /** * Notify when * 1.any Exception occurs when execute * 2.thread is terminate by {@link OperationThread#terminate()} * 3.desktop is not longer available * @param desktop the Desktop which {@link OperationThread} associate to. */ public void failToExecute(Desktop desktop); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy