Hello, i have a question about .freeze() used in k...
# ios
m
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
You can expose it via additional Kotlin function to Swift
m
oh my bad i found an easy solution init { this.freeze() } inside my kotlin native class did the trick