ExperimentalKmpWorkerApi
@Target(allowedTargets = [AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY, AnnotationTarget.TYPEALIAS] )
Marks an API as experimental in KMPWorker.
Experimental APIs may change without notice in minor or patch releases. Opt in at the call site:
@OptIn(ExperimentalKmpWorkerApi::class)
fun myFunction() { ... }Content copied to clipboard
Or at the file level:
@file:OptIn(ExperimentalKmpWorkerApi::class)Content copied to clipboard