replayStreamActivityLog static method

GemError replayStreamActivityLog(
  1. String path
)

Replay a previously recorded stream activity log.

API users are advised to use DataSource.createLogDataSource for log replay.

Parameters:

  • path The path to the log file to be replayed.

Returns

  • An error code indicating the success or failure of the operation. See GemError for details.

See also:

Implementation

static GemError replayStreamActivityLog(String path) {
  final OperationResult resultString = staticMethod(
    'Debug',
    'replayStreamActivityLog',
    args: path,
  );

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