onStart

open fun onStart(files: List<KtFile>, bindingContext: BindingContext)

Use this to gather some additional information for the real onProcess function. This calculation should be lightweight as this method is called from the main thread.


open fun onStart(files: List<KtFile>)

Deprecated

Use alternative with a binding context.

Replace with

onStart(files, bindingContext)

Use this to gather some additional information for the real onProcess function. This calculation should be lightweight as this method is called from the main thread.