mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
16 lines
251 B
Swift
16 lines
251 B
Swift
import AVFAudio
|
|
import Foundation
|
|
|
|
protocol CaptureUnit {
|
|
var lockQueue: DispatchQueue { get }
|
|
var isSuspended: Bool { get }
|
|
|
|
@available(tvOS 17.0, *)
|
|
func suspend()
|
|
|
|
@available(tvOS 17.0, *)
|
|
func resume()
|
|
|
|
func finish()
|
|
}
|