Searched refs:mCommandTimer (Results 1 – 1 of 1) sorted by relevance
140 private ScheduledThreadPoolExecutor mCommandTimer; field in CommandScheduler891 mCommandTimer = new ScheduledThreadPoolExecutor(1); in CommandScheduler()1029 mCommandTimer.shutdown(); in run()1506 mCommandTimer.schedule(delayCommand, delayTime, TimeUnit.MILLISECONDS); in addExecCommandToQueue()1717 return mCommandTimer.isShutdown() || (mShutdownOnEmpty && getAllCommandsSize() == 0); in isShutdown()1721 return mCommandTimer.isShutdown() || mShutdownOnEmpty; in isShuttingDown()1741 if (mCommandTimer != null) { in doShutdown()1742 mCommandTimer.shutdownNow(); in doShutdown()1772 if (mCommandTimer != null) { in removeAllCommands()1773 for (Runnable task : mCommandTimer.getQueue()) { in removeAllCommands()[all …]