Class NodesDisconnected
- java.lang.Object
-
- org.openqa.selenium.devtools.v112.webaudio.model.NodesDisconnected
-
public class NodesDisconnected extends java.lang.Object
Notifies that AudioNodes are disconnected. The destination can be null, and it means all the outgoing connections from the source are disconnected.
-
-
Constructor Summary
Constructors Constructor Description NodesDisconnected(GraphObjectId contextId, GraphObjectId sourceId, GraphObjectId destinationId, java.util.Optional<java.lang.Number> sourceOutputIndex, java.util.Optional<java.lang.Number> destinationInputIndex)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GraphObjectId
getContextId()
GraphObjectId
getDestinationId()
java.util.Optional<java.lang.Number>
getDestinationInputIndex()
GraphObjectId
getSourceId()
java.util.Optional<java.lang.Number>
getSourceOutputIndex()
-
-
-
Constructor Detail
-
NodesDisconnected
public NodesDisconnected(GraphObjectId contextId, GraphObjectId sourceId, GraphObjectId destinationId, java.util.Optional<java.lang.Number> sourceOutputIndex, java.util.Optional<java.lang.Number> destinationInputIndex)
-
-
Method Detail
-
getContextId
public GraphObjectId getContextId()
-
getSourceId
public GraphObjectId getSourceId()
-
getDestinationId
public GraphObjectId getDestinationId()
-
getSourceOutputIndex
public java.util.Optional<java.lang.Number> getSourceOutputIndex()
-
getDestinationInputIndex
public java.util.Optional<java.lang.Number> getDestinationInputIndex()
-
-