/**
  * Notifies the background timer to schedule a task for storing the contents of this store to
  * disk.
  */
 private void scheduleTask() {
   ResettableTimer timer = (ResettableTimer) m_timerRef.get();
   if (timer != null && !timer.isShutDown()) {
     timer.schedule();
   }
 }