RFSRecordingProcess
Objective-C
NS_CLOSED_ENUM(NSInteger, RFSRecordingProcess) {
/// Video will be recorded and send in parallel with the main request to liveness service.
RFSRecordingProcessAsynchronousUpload,
/// Video will be recorded, packaged and sent in one request to liveness service.
RFSRecordingProcessSynchronousUpload,
/// Video will not be recorder.
RFSRecordingProcessNotUpload
}
Swift
@frozen enum RecordingProcess : Int, @unchecked Sendable
Undocumented
-
Video will be recorded and send in parallel with the main request to liveness service.
Declaration
Objective-C
RFSRecordingProcessAsynchronousUploadSwift
case asynchronousUpload = 0 -
Video will be recorded, packaged and sent in one request to liveness service.
Declaration
Objective-C
RFSRecordingProcessSynchronousUploadSwift
case synchronousUpload = 1 -
Video will not be recorder.
Declaration
Objective-C
RFSRecordingProcessNotUploadSwift
case notUpload = 2