Hello, i have a question about .freeze() used in kotlin native is there any way to use in swift side? i have a problem with threads since i'm using a DispatchQueue.global().async to call one of my interactor (use of clean archi) functions and i need to freeze it before sending it to the queue
o
olonho
03/26/2019, 5:11 PM
You can expose it via additional Kotlin function to Swift
m
mben
03/26/2019, 5:18 PM
oh my bad i found an easy solution init { this.freeze() } inside my kotlin native class did the trick