stop method

GemError stop()

Stop the data source.

Stops sampling or playback. For some source types this operation may pause playback or perform a graceful shutdown of live sampling.

Returns

Implementation

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

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