Looper泄漏消息

时间:2014-03-25 23:50:07

标签: java android multithreading memory-leaks

所以我用这个looper来执行长时间运行的任务。 我传递了Worker个对象,它本质上是一个Runnable

的包装器

我注意到它似乎泄漏的Message对象大小完全相同

为什么会发生这种情况的任何想法?

主题:

public class WorkerQueue extends Thread {
  public Handler handler;
  int priority = Thread.MIN_PRIORITY + 1;
  private static WorkerQueue self = null;

  public static WorkerQueue getInstance() {
    if (self == null) {
      self = new WorkerQueue();
      self.start();
      self.setPriority(priority);
    }

    return self;
  }

  @Override
  public void run() {
      Looper.prepare();
      handler = new Handler();
      handler.getLooper().getThread().setPriority(priority);
      Looper.loop();    
  }

  public synchronized void enqueueTask(final Worker task) {
    handler.post(new Runnable() {
      @Override
      public void run() {
          task.run();
      }
    });
  }
}

1 个答案:

答案 0 :(得分:1)

根据android文档,您应该使用ThreadPoolExecutor

你可以这样做:

ExecutorService executor = Executors.newCachedThreadPool(); //or whatever you think is best, read the Javadocs for the different options under Executors
executor.execute(new Runnable() {
    @Override
    public void run() {
        //implement long running task here
    }
});

让当前的Worker类实现Runnable并不困难,然后你可以将它们直接传递给execute方法。

当然,如果你愿意,你可以随时重写Java的ExecutorService(这就是你似乎在做的事情),但是你不可能在端。