blob: 8dea9d8e4662f3c4b42a17df429ca4f589b769c3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.command;
import java.util.EventListener;
/**
* Extend the repeating command to support listeners that are notified
* when an execution "cycle" is complete; i.e. the command has,
* for the moment, handled every execution request and quiesced.
* This notification is <em>not</em> guaranteed to occur with <em>every</em>
* execution "cycle"; since other, unrelated, executions can be triggered
* concurrently, causing the "cycle" to continue.
* <p>
* Provisional API: This interface is part of an interim API that is still
* under development and expected to change significantly before reaching
* stability. It is available at this early stage to solicit feedback from
* pioneering adopters on the understanding that any code that uses this API
* will almost certainly be broken (repeatedly) as the API evolves.
*/
public interface NotifyingRepeatingCommand
extends RepeatingCommand
{
/**
* Add the specified listener.
*/
void addListener(Listener listener);
/**
* Remove the specified listener.
*/
void removeListener(Listener listener);
// ********** listener **********
/**
* Interface implemented by listeners to be notified whenever the
* command has quiesced.
* @see NotifyingRepeatingCommand#addListener(Listener)
* @see NotifyingRepeatingCommand#removeListener(Listener)
*/
public interface Listener
extends EventListener
{
/**
* The specified command has quiesced.
*/
void executionQuiesced(Command command);
}
}