Hi! Where can i find some documentation where ther...
# getting-started
l
Hi! Where can i find some documentation where there is some information regarding calling suspend functions from KMM in a java class?
c
Java cannot call
suspend
functions. You have to provide a wrapper for Java (using either
runBlocking
, wrapping in a Future, etc).
a
^ This commit in the Intellij repo from a few days ago shows an example of such a wrapper