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

com.anarsoft.vmlens.concurrent.junit.internal.ParallelExecutorThread Maven / Gradle / Ivy

The newest version!
package com.anarsoft.vmlens.concurrent.junit.internal;



public class ParallelExecutorThread extends Thread {

	private final ConcurrentStatement concurrentStatement;
	
	

	
	public ParallelExecutorThread(ConcurrentStatement concurrentStatement	) {
		super();
		this.setDaemon(true);
		this.concurrentStatement = concurrentStatement;
	}




	@Override
	public void run() {
		
		try{
		
		concurrentStatement.evaluate();
		
		}
		catch(Exception e)
		{
			throw new RuntimeException(e);
		}
	
		
	}
	
	
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy