RecordingService
The RecordingService allows an application to record conferences by using the start and stop methods that turn the recording on and off. The service also allows checking if the conference is recorded, and informs about the recording status.
Accessors
delegate
▸ delegate: VTRecordingDelegate
A means of communication between objects in the recording service.
Returns: VTRecordingDelegate
status
▸ status: VTRecordingStatus
Checks the current recording status.
Returns: VTRecordingStatus
isRecording
▸ isRecording: Bool
Checks whether the conference is recorded.
Returns: Bool
Methods
start
▸ start(completion
: ((_ error: NSError?) -> Void)?)
Starts recording a conference. For more information, see the Recording Conferences article.
Parameters:
Name | Type | Default | Description |
---|---|---|---|
completion | ((_ error: NSError?) -> Void)? | nil | The block to execute when the query completes. |
stop
▸ stop(completion
: ((_ error: NSError?) -> Void)?)
Stops recording a conference.
Parameters:
Name | Type | Default | Description |
---|---|---|---|
completion | ((_ error: NSError?) -> Void)? | nil | The block to execute when the query completes. |
Updated 9 months ago