All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.whispersystems.signalservice.api.util.UptimeSleepTimer Maven / Gradle / Ivy

There is a newer version: 2.15.3_unofficial_107
Show newest version
package org.whispersystems.signalservice.api.util;

/**
 * A simle sleep timer.  Since Thread.sleep is based on uptime
 * this will not work properly in low-power sleep modes, when
 * the CPU is suspended and uptime does not elapse.
 *
 */
public class UptimeSleepTimer implements SleepTimer {
  @Override
  public void sleep(long millis) throws InterruptedException {
    Thread.sleep(millis);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy