stop method

GemError stop()

Stop the source

Returns

Throws

  • An exception if it fails

Implementation

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

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