Package 

Interface RecurringRunnable

  • All Implemented Interfaces:
    java.lang.Runnable

    
    public interface RecurringRunnable
     implements Runnable
                        

    Represents an asynchronous processable task which determines the intervals (the lengths of which may vary) at which it is to be invoked. webrtc/modules/interface/module.h

    • Method Summary

      Modifier and Type Method Description
      abstract long getTimeUntilNextRun() Returns the number of milliseconds until this instance wants a workerthread to call run.
      • Methods inherited from class java.lang.Runnable

        run
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getTimeUntilNextRun

         abstract long getTimeUntilNextRun()

        Returns the number of milliseconds until this instance wants a workerthread to call run. The method is called on the sameworker thread as Process will be called on.