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

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract long getTimeUntilNextRun() Returns the number of milliseconds until this instance wants a worker thread 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
    • Constructor Detail

    • Method Detail

      • getTimeUntilNextRun

         abstract long getTimeUntilNextRun()

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