Class ContextRealtimeData

java.lang.Object
org.openqa.selenium.devtools.v85.webaudio.model.ContextRealtimeData

public class ContextRealtimeData extends Object
Fields in AudioContext that change in real-time.
  • Constructor Details

    • ContextRealtimeData

      public ContextRealtimeData(Number currentTime, Number renderCapacity, Number callbackIntervalMean, Number callbackIntervalVariance)
  • Method Details

    • getCurrentTime

      public Number getCurrentTime()
      The current context time in second in BaseAudioContext.
    • getRenderCapacity

      public Number getRenderCapacity()
      The time spent on rendering graph divided by render qunatum duration, and multiplied by 100. 100 means the audio renderer reached the full capacity and glitch may occur.
    • getCallbackIntervalMean

      public Number getCallbackIntervalMean()
      A running mean of callback interval.
    • getCallbackIntervalVariance

      public Number getCallbackIntervalVariance()
      A running variance of callback interval.