Searched refs:mCommandTimer (Results 1 – 1 of 1) sorted by relevance
165 private ScheduledThreadPoolExecutor mCommandTimer; field in CommandScheduler1099 mCommandTimer = new ScheduledThreadPoolExecutor(1); in CommandScheduler()1246 mCommandTimer.shutdown(); in run()1772 mCommandTimer.schedule(delayCommand, delayTime, TimeUnit.MILLISECONDS); in addExecCommandToQueue()2101 return mCommandTimer.isShutdown() || (mShutdownOnEmpty && getAllCommandsSize() == 0); in isShutdown()2105 return mCommandTimer.isShutdown() || mShutdownOnEmpty || mStopScheduling; in isShuttingDown()2137 if (mCommandTimer != null) { in doShutdown()2138 mCommandTimer.shutdownNow(); in doShutdown()2168 if (mCommandTimer != null) { in removeAllCommands()2169 for (Runnable task : mCommandTimer.getQueue()) { in removeAllCommands()[all …]