![JAR search and dependency download from the Maven repository](/logo.png)
com.zipwhip.executors.SimpleExecutor Maven / Gradle / Ivy
package com.zipwhip.executors;
import java.util.concurrent.Executor;
/**
* Created by IntelliJ IDEA.
* User: Michael
* Date: 8/2/11
* Time: 2:42 PM
*
* Executes something synchronously
*/
public class SimpleExecutor implements Executor {
@Override
public void execute(Runnable command) {
command.run();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy