Analyzer

An analyzer takes some data as an input, and returns an analyzed output. Analyzers should not contain any state. They must define whether they can run on a multithreaded executor, and provide a means of analyzing input data to return some form of result.

Functions

Link copied to clipboard
abstract suspend fun analyze(data: Input, state: State): Output