blob: 35134fcada56f19df2391c4da009fef2993a67b2 [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
* Gunnar Wagenknecht - added support for generics
******************************************************************************/
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
* @since 1.1
*/
public class ImmediateExecutor extends AbstractExecutor implements IExecutor,
IRunnableExecutor {
@SuppressWarnings("rawtypes")
protected AbstractFuture<?> createFuture(IProgressMonitor monitor) {
return new SingleOperationListenableFuture(monitor);
}
@SuppressWarnings("unchecked")
public <ResultType> IFuture<ResultType> execute(
IProgressRunnable<? extends ResultType> runnable,
IProgressMonitor monitor) {
Assert.isNotNull(runnable);
@SuppressWarnings("rawtypes")
AbstractFuture sof = createFuture(monitor);
// Actually run the runnable immediately. See NOTE above
sof.runWithProgress(runnable);
return sof;
}
}