Esempio n. 1
0
 public Queue(LoadBalancer loadBalancer) {
   this.loadBalancer = loadBalancer.sanitize();
   // if all the executors are busy doing something, then the queue won't be maintained in
   // timely fashion, so use another thread to make sure it happens.
   new MaintainTask(this);
 }