replayStreamActivityLog static method

GemError replayStreamActivityLog(
  1. String path
)

Replay a previously recorded stream activity log.

Parameters:

  • IN 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.

Throws:

  • An exception if it fails.

Implementation

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

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