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

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

package org.distributeme.test.concurrencycontrol;

import java.lang.reflect.Method;


public class TestClientSideCalls {

	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("clientSideLimited", long.class);
		TestRun.test(alimit, m);
		
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy