Execute task in Engine thread @param task is task to execute
(final EngineTask task)
| 209 | * is task to execute |
| 210 | */ |
| 211 | public void execute(final EngineTask task) { |
| 212 | if (LOG_ENGINE_TASKS) |
| 213 | log.d("executing task " + task.getClass().getSimpleName()); |
| 214 | TaskHandler taskHandler = new TaskHandler(task); |
| 215 | mBackgroundThread.executeBackground(taskHandler); |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * Schedule task for execution in Engine thread |
no test coverage detected