Schedule task for execution in Engine thread @param task is task to execute
(final EngineTask task)
| 222 | * is task to execute |
| 223 | */ |
| 224 | public void post(final EngineTask task) { |
| 225 | if (LOG_ENGINE_TASKS) |
| 226 | log.d("executing task " + task.getClass().getSimpleName()); |
| 227 | TaskHandler taskHandler = new TaskHandler(task); |
| 228 | mBackgroundThread.postBackground(taskHandler); |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * Schedule Runnable for execution in GUI thread after all current Engine |
no test coverage detected