start(inputSequence:)
Starts analysis of an input sequence and returns immediately.
Declaration
final func start<InputSequence>(inputSequence: InputSequence) async throws where InputSequence : Sendable, InputSequence : AsyncSequence, InputSequence.Element == AnalyzerInputParameters
- inputSequence:
A new input sequence.
Discussion
This method stops the autonomous analysis of the previous input sequence. To ensure the previous sequence’s input is fully consumed, call finalize(through:) first.
The previous input sequence may be rendered inoperable depending on its implementation.