You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aggregation-platform/test/com/platform/test/MyTestThread.java

18 lines
309 B

package com.platform.test;
public class MyTestThread implements Runnable{
@Override
public void run() {
for (int i = 0; i < 1000; i++) {
try {
Thread.sleep(50);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}