bonjour

j'ai crée une classe TestRunnable.java qui implémente de la interface Runnable

j'ai fait ce code dans un Thread

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
Thread t1=new Thread(new TestRunable("Rule-71",factory,ruleEngine));
Thread t2=new Thread(new TestRunable("Rule-72",factory,ruleEngine));
try
{
t1.join(); t2.join();
}
catch(InterruptedException e) {
		 	        System.out.println ("echec d'attendre les thread") ;
		 	      } 
Thread t3=new Thread(new TestRunable("Rule-73",factory,ruleEngine));
Thread t4=new Thread(new TestRunable("Rule-74",factory,ruleEngine));
mais le temps d’exécution est plus grand par rapport a l’exécution du code sans Thread...
un autre probléme il'ya un warning il ne peut pas accéder a la fonction run du classe TestRunnable