start method
Start the data source.
Begins producing data (live sampling or playback) depending on the data source type. Some data sources types are automatically started upon creation and calling this method has no effect.
Returns
- GemError.success on success.
- Other GemError values on failure.
Implementation
GemError start() {
final OperationResult resultString = objectMethod(
pointerId,
'DataSourceContainer',
'start',
);
return GemErrorExtension.fromCode(resultString['result']);
}