Ejemplo n.º 1
1
 public Object run() {
   Thread t = new Thread(appContext.getThreadGroup(), runnable);
   t.setContextClassLoader(appContext.getContextClassLoader());
   t.setPriority(Thread.NORM_PRIORITY + 1);
   t.setDaemon(true);
   return t;
 }