| Package | com.noteflight.standingwave2.performance |
| Interface | public interface IPerformance |
| Implementors | ListPerformance, QueuePerformance |
| Property | Defined By | ||
|---|---|---|---|
| descriptor : AudioDescriptor [read-only]
The AudioDescriptor describing the audio characteristics of this performance. | IPerformance | ||
| frameCount : Number [read-only]
The number of sample frames in this performance. | IPerformance | ||
| Method | Defined By | ||
|---|---|---|---|
Obtain a clone of this performance, preserving all of its timing information but
cloning all contained audio sources. | IPerformance | ||
getElementsInRange(start:Number, end:Number):Vector.<PerformanceElement>
Obtain a list of of PerformanceElements in this performance, ordered by starting frame index,
whose starting frame lies in a given range. | IPerformance | ||
| descriptor | property |
descriptor:AudioDescriptor [read-only] The AudioDescriptor describing the audio characteristics of this performance.
public function get descriptor():AudioDescriptor| frameCount | property |
frameCount:Number [read-only] The number of sample frames in this performance.
public function get frameCount():Number| clone | () | method |
public function clone():IPerformanceObtain a clone of this performance, preserving all of its timing information but cloning all contained audio sources.
ReturnsIPerformance |
| getElementsInRange | () | method |
public function getElementsInRange(start:Number, end:Number):Vector.<PerformanceElement>Obtain a list of of PerformanceElements in this performance, ordered by starting frame index, whose starting frame lies in a given range.
Parameters
start:Number — frame count of range start (inclusive)
| |
end:Number — frame count of the range end (exclusive)
|
Vector.<PerformanceElement> |