package paket;
public class MainTread {
public synchronized void method1() {
Irq irq = new Irq();
for (int i = 0; i < 10; i++) {
try {
this.wait(500);
System.out.println("[]");
irq.irqSignal();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
public static void main(String[] args) {
MainTread mt = new MainTread();
mt.method1();
}
////////////////////////////////////////////////
package paket;
import java.util.TimerTask;
public class Irq extends Thread {
private Thread th = new Thread();
public synchronized void irqSignal() {
th.getPriority();
try {
this.wait(3000);
//AKI QUIERO REALIZAR ALGO QUE TARDE UN TIEMPO.
//OSEA QUE HAGA ALGO MIENTRAS ESTA PAUSADO EL TREAD DE LA OTRA CLASE
int i = 0;
while(i < 300) {
i++;
System.out.print(i);
}
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("IRQ");
}
}
}