blob: c89d0cecaf6d47665d6e4577e12bb4eb484ea22b [file] [log] [blame]
/******************************************************************************
.
. 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
t https://www.eclipse.org/legal/epl-2.0/
t
t SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* EclipseSource - initial API and implementation
******************************************************************************/
package org.eclipse.equinox.concurrent.future;
/**
* An executor that can execute Runnables, rather than {@link IProgressRunnable}
* s.
*
* @see IExecutor#execute(IProgressRunnable,
* org.eclipse.core.runtime.IProgressMonitor)
* @since 1.1
*/
public interface IRunnableExecutor {
void execute(Runnable runnable);
}