blob: b5c936c3831c08441898da0f1403835896712399 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2009 EclipseSource and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* EclipseSource - initial API and implementation
******************************************************************************/
package org.eclipse.equinox.concurrent.future;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IProgressMonitor;
/**
* <p>
* Executes {@link IProgressRunnable} instances immediately.
* </p>
* <p>
* <b>NOTE</b>: {@link #execute(IProgressRunnable, IProgressMonitor)} should be used with some
* degree of caution with this implementation, as unlike other implementations the {@link IProgressRunnable#run(IProgressMonitor)}
* method will be called by the thread that calls {@link #execute(IProgressRunnable, IProgressMonitor)}, meaning
* that calling #execute(IProgressRunnable, IProgressMonitor) may block the calling thread indefinitely.
* </p>
* @see ThreadsExecutor
*/
public class ImmediateExecutor extends AbstractExecutor implements IExecutor, IRunnableExecutor {
protected AbstractFuture createFuture(IProgressMonitor monitor) {
return new SingleOperationFuture(monitor);
}
public IFuture execute(IProgressRunnable runnable, IProgressMonitor monitor) {
Assert.isNotNull(runnable);
AbstractFuture sof = createFuture(monitor);
// Actually run the runnable immediately. See NOTE above
sof.runWithProgress(runnable);
return sof;
}
}