AUGraphGetInteractionInfo(_:_:_:)
Retrieves information about a particular interaction in an audio processing graph.
Declaration
func AUGraphGetInteractionInfo(_ inGraph: AUGraph, _ inInteractionIndex: UInt32, _ outInteraction: UnsafeMutablePointer<AUNodeInteraction>) -> OSStatusParameters
- inGraph:
- inInteractionIndex:
- outInteraction:
The interaction information at the specified index.
Return Value
A result code.
Discussion
An application can iterate through the interactions (as with the nodes) of a graph by retrieving the number of interactions, and then iterating an index starting from 0. The inInteractionIndex parameter is based on the outNumInteractions value and is only valid if no edits to the graph’s state have been made.
See Also
Audio Unit Processing Graph Services Functions
AUGraphAddNode(_:_:_:)AUGraphAddRenderNotify(_:_:_:)AUGraphClearConnections(_:)AUGraphClose(_:)AUGraphConnectNodeInput(_:_:_:_:_:)AUGraphCountNodeInteractions(_:_:_:)AUGraphDisconnectNodeInput(_:_:_:)AUGraphGetCPULoad(_:_:)AUGraphGetIndNode(_:_:_:)AUGraphGetMaxCPULoad(_:_:)AUGraphGetNodeCount(_:_:)AUGraphGetNodeInfoSubGraph(_:_:_:)AUGraphGetNodeInteractions(_:_:_:_:)AUGraphGetNumberOfInteractions(_:_:)AUGraphInitialize(_:)