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

com.googlecode.e2u.NewThreadExecutor Maven / Gradle / Ivy

package com.googlecode.e2u;

import java.util.concurrent.Executor;

public class NewThreadExecutor implements Executor {

	@Override
	public void execute(Runnable r) {
		new Thread(r).start();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy