org.distributeme.test.concurrencycontrol.TestServerSideCalls Maven / Gradle / Ivy
package org.distributeme.test.concurrencycontrol;
import java.lang.reflect.Method;
public class TestServerSideCalls {
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("serverSideLimited", long.class);
TestRun.test(alimit, m);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy