StopRecording finalizes the recording identified by the given ID. Idempotent - safe to call on an already-stopped recording. Returns a RecordingArtifact that the caller can stream. The caller must close the artifact when done. Returns an error if the recording ID is unknown.
(ctx context.Context, recordingID string)
| 78 | // caller must close the artifact when done. Returns an error if |
| 79 | // the recording ID is unknown. |
| 80 | StopRecording(ctx context.Context, recordingID string) (*RecordingArtifact, error) |
| 81 | |
| 82 | // Close shuts down the desktop session and cleans up resources. |
| 83 | Close() error |
no outgoing calls