You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ Install the Kotlin client by adding the following dependency to your `gradle.bui
53
53
54
54
For full documentation, visit the **[Algolia {PROJECT} API Client](https://www.algolia.com/doc/api-client/getting-started/install/kotlin/)**.
55
55
56
-
## Coroutines
56
+
###Coroutines
57
57
58
58
All methods performing HTTP calls in the Kotlin client are [suspending functions](https://kotlinlang.org/docs/reference/coroutines/composing-suspending-functions.html#composing-suspending-functions).
59
59
This means these functions can only be called from a coroutine.
@@ -80,7 +80,7 @@ The Kotlin client doesn't execute HTTP calls on any particular thread, it is up
80
80
Learn more about [coroutines](https://kotlinlang.org/docs/reference/coroutines/coroutines-guide.html).
81
81
82
82
83
-
## Waiting for operations
83
+
###Waiting for operations
84
84
85
85
Waiting for an asynchronous server task is made available via a [function literal with receiver](https://kotlinlang.org/docs/reference/lambdas.html#function-literals-with-receiver).
86
86
@@ -97,7 +97,7 @@ client.run {
97
97
98
98
The `wait` functions are suspending, and should only be called from a coroutine.
99
99
100
-
## Type safety
100
+
###Type safety
101
101
102
102
Response and parameters objects are typed to provide extensive compile time safety coverage.
0 commit comments