this would process them in parallel, if you want t...
# ktor
g
this would process them in parallel, if you want to get the value you would go firstSite.await(), e.g.
Copy code
// Type of job here is Deffered<String>
val job = async {
  "kanelbulle"
}
// The await will give you the value
println(job.await())
the await is “blocking” in terms of how your code is sequentially running but it doesn’t actually block threads as the await is a suspension point
m
You can use triple backticks (```) to format the code.
👍 1
g
thanks