Class BaseAudioContext
- java.lang.Object
-
- org.openqa.selenium.devtools.v112.webaudio.model.BaseAudioContext
-
public class BaseAudioContext extends java.lang.Object
Protocol object for BaseAudioContext
-
-
Constructor Summary
Constructors Constructor Description BaseAudioContext(GraphObjectId contextId, ContextType contextType, ContextState contextState, java.util.Optional<ContextRealtimeData> realtimeData, java.lang.Number callbackBufferSize, java.lang.Number maxOutputChannelCount, java.lang.Number sampleRate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Number
getCallbackBufferSize()
Platform-dependent callback buffer size.GraphObjectId
getContextId()
ContextState
getContextState()
ContextType
getContextType()
java.lang.Number
getMaxOutputChannelCount()
Number of output channels supported by audio hardware in use.java.util.Optional<ContextRealtimeData>
getRealtimeData()
java.lang.Number
getSampleRate()
Context sample rate.
-
-
-
Constructor Detail
-
BaseAudioContext
public BaseAudioContext(GraphObjectId contextId, ContextType contextType, ContextState contextState, java.util.Optional<ContextRealtimeData> realtimeData, java.lang.Number callbackBufferSize, java.lang.Number maxOutputChannelCount, java.lang.Number sampleRate)
-
-
Method Detail
-
getContextId
public GraphObjectId getContextId()
-
getContextType
public ContextType getContextType()
-
getContextState
public ContextState getContextState()
-
getRealtimeData
public java.util.Optional<ContextRealtimeData> getRealtimeData()
-
getCallbackBufferSize
public java.lang.Number getCallbackBufferSize()
Platform-dependent callback buffer size.
-
getMaxOutputChannelCount
public java.lang.Number getMaxOutputChannelCount()
Number of output channels supported by audio hardware in use.
-
getSampleRate
public java.lang.Number getSampleRate()
Context sample rate.
-
-