Interface TaskQueue

All Known Implementing Classes:
Map

public interface TaskQueue
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Add task to run on a worker thread.
    boolean
    post(Runnable task)
    Add task to run on a main thread.
  • Method Details

    • post

      boolean post(Runnable task)
      Add task to run on a main thread.
    • addTask

      void addTask(Runnable task)
      Add task to run on a worker thread.