All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.englishtown.promises.impl.SyncExecutor Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package com.englishtown.promises.impl;

import java.util.concurrent.Executor;

/**
 * Synchronous executor
 */
public class SyncExecutor implements Executor {

    /**
     * {@inheritDoc}
     */
    @Override
    public void execute(Runnable command) {
        command.run();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy