blob: cc4fe9c7bad521d50dacb3c14bf492705e3e45ac [file] [log] [blame]
/*
* Copyright (c) 2019 Eike Stepper (Loehne, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.net4j.util.concurrent;
import java.util.concurrent.Executor;
/**
* @author Eike Stepper
* @since 3.9
*/
public final class SynchronousExecutor implements Executor
{
public static final Executor INSTANCE = new SynchronousExecutor();
private static final String NAME = SynchronousExecutor.class.getSimpleName() + ".INSTANCE";
private SynchronousExecutor()
{
}
@Override
public void execute(Runnable work)
{
work.run();
}
@Override
public String toString()
{
return NAME;
}
}