ExperimentalKmpTorApi

@Target(allowedTargets = [AnnotationTarget.CLASS, AnnotationTarget.ANNOTATION_CLASS, AnnotationTarget.PROPERTY, AnnotationTarget.FIELD, AnnotationTarget.LOCAL_VARIABLE, AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.CONSTRUCTOR, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY_GETTER, AnnotationTarget.PROPERTY_SETTER, AnnotationTarget.TYPEALIAS])
annotation class ExperimentalKmpTorApi(source)

Denotes an api as experimental and subject to change at any time.

Should probably not use it for anything other than playing around with.

Any usage of a declaration annotated with ExperimentalKmpTorApi must be accepted by annotating that usage with the OptIn annotation, e.g. @OptIn(ExperimentalKmpTorApi::class), or by using the following compiler argument:

-Xopt-in=io.matthewnelson.kmp.tor.common.api.ExperimentalKmpTorApi