Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[geclipse-dev] Timers are not deamons

Hi,

in class GridFTPConnection timers are not started as deamons, so my application takes a very long time to stop waiting for every timers to expire :

  void startTimer() {
    //change that line for this.timer = new Timer(true);
    this.timer = new Timer();
    this.timer.schedule( new TimerTask() {

      @Override
      public void run() {
        try {


Is it possible to turn them into deamons?

Cheers,
Romain.


Back to the top