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

org.distributeme.test.concurrencycontrol.TestClazzLevelServerSideCalls Maven / Gradle / Ivy

package org.distributeme.test.concurrencycontrol;

import java.lang.reflect.Method;

public class TestClazzLevelServerSideCalls {
	public static void main(String[] args) throws Exception{
		int alimit = 100;
		try{
			alimit = Integer.parseInt(args[0]);
		}catch(Exception ignored){
		};

		Method m = TestService.class.getMethod("clazzLevelServerSideLimited", long.class);
		TestRun.test(alimit, m);
		
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy