start method

GemError start()

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

Implementation

GemError start() {
  final OperationResult resultString = objectMethod(
    pointerId,
    'DataSourceContainer',
    'start',
  );

  return GemErrorExtension.fromCode(resultString['result']);
}