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

org.geomajas.gwt.client.command.Deferred Maven / Gradle / Ivy

There is a newer version: 2.4.3
Show newest version
/*
 * This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
 *
 * Copyright 2008-2014 Geosparc nv, http://www.geosparc.com/, Belgium.
 *
 * The program is available in open source according to the GNU Affero
 * General Public License. All contributions in this program are covered
 * by the Geomajas Contributors License Agreement. For full licensing
 * details, see LICENSE.txt in the project root.
 */

package org.geomajas.gwt.client.command;

import java.util.ArrayList;
import java.util.List;

import org.geomajas.annotation.Api;

/**
 * Call-back holder for a command. When a response returns from the server (either successfully or with errors to
 * report), the call-backs within this object will be executed. The idea is that you send out a request with a certain
 * call-back, but perhaps while the command is being send, you may want to do some extra calculations with the results.
 * No need to send out an extra command to the server, just add a call-back here.
 * 
 * @author Pieter De Graef
 * @since 2.0.0
 */
@Api(allMethods = true)
public class Deferred {

	private List onSuccessCallbacks = new ArrayList();

	private List onErrorCallbacks = new ArrayList();

	private boolean cancelled;

	private boolean logCommunicationExceptions = true;

	/** Constructor. */
	public Deferred() {
	}

	/**
	 * Cancel the handling of command callbacks.
	 */
	public void cancel() {
		onSuccessCallbacks.clear();
		onErrorCallbacks.clear();
		cancelled = true;
	}
	
	/**
	 * Add callbacks for the command.
	 * 
	 * @param callback, this can be either a simple {@link CommandCallback} or a version implementing
	 * {@link org.geomajas.gwt.client.command.CommandExceptionCallback} or {@link CommunicationExceptionCallback}.
	 */
	public void addCallback(CommandCallback callback) {
		onSuccessCallbacks.add(callback);
	}

	/**
	 * Get the callbacks for the command (as long as they are not cancelled).
	 *
	 * @return command callbacks
	 */
	public List getCallbacks() {
		if (cancelled) {
			return new ArrayList();
		}
		return onSuccessCallbacks;
	}

	/**
	 * Check whether handling command callbacks was cancelled.
	 *
	 * @return true when no callback processing should be done
	 */
	public boolean isCancelled() {
		return cancelled;
	}

	/**
	 * Should communication exceptions be logged?
	 *
	 * @return true when communication exceptions should be logged on the server side
	 */
	public boolean isLogCommunicationExceptions() {
		return logCommunicationExceptions;
	}

	/**
	 * Should communication exceptions be logged?
	 *
	 * @param logCommunicationExceptions should communication exceptions be logged?
	 */
	public void setLogCommunicationExceptions(boolean logCommunicationExceptions) {
		this.logCommunicationExceptions = logCommunicationExceptions;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy