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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ The Java, Reactive, OSGi, Kotlin and Scala clients are implemented for the Influ
48
48
| --- | --- | --- | --- |
49
49
|**[java](./client)**| The reference Java client that allows query, write and InfluxDB 2.0 management. |[javadoc](https://influxdata.github.io/influxdb-client-java/influxdb-client-java/apidocs/index.html), [readme](./client#influxdb-client-java/)| 2.0 |
50
50
|**[reactive](./client-reactive)**| The reference RxJava client for the InfluxDB 2.0 that allows query and write in a reactive way.|[javadoc](https://influxdata.github.io/influxdb-client-java/influxdb-client-java/apidocs/index.html), [readme](./client#influxdb-client-java/)|2.0 |
51
-
|**[kotlin](./client-kotlin)**| The reference Kotlin client that allows query and write for the InfluxDB 2.0 by [Kotlin Channel coroutines](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/-channel/index.html). |[KDoc](https://influxdata.github.io/influxdb-client-java/influxdb-client-kotlin/dokka/influxdb-client-kotlin/com.influxdb.client.kotlin/index.html), [readme](./client-kotlin#influxdb-client-kotlin/)| 2.0|
51
+
|**[kotlin](./client-kotlin)**| The reference Kotlin client that allows query and write for the InfluxDB 2.0 by Kotlin [Channel](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/-channel/index.html) and [Flow](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html) coroutines. |[KDoc](https://influxdata.github.io/influxdb-client-java/influxdb-client-kotlin/dokka/influxdb-client-kotlin/com.influxdb.client.kotlin/index.html), [readme](./client-kotlin#influxdb-client-kotlin/)| 2.0|
52
52
|**[scala](./client-scala)**| The reference Scala client that allows query and write for the InfluxDB 2.0 by [Akka Streams](https://doc.akka.io/docs/akka/2.6/stream/). |[Scaladoc](https://influxdata.github.io/influxdb-client-java/client-scala/cross/influxdb-client-scala_2.13/scaladocs/com/influxdb/client/scala/index.html), [readme](./client-scala#influxdb-client-scala/)| 2.0 |
53
53
|**[osgi](./client-osgi)**| The reference OSGi (R6) client embedding Java and reactive clients and providing standard features (declarative services, configuration, event processing) for the InfluxDB 2.0. |[javadoc](https://influxdata.github.io/influxdb-client-java/influxdb-client-osgi/apidocs/index.html), [readme](./client-osgi)| 2.0 |
54
54
|**[karaf](./karaf)**| The Apache Karaf feature definition for the InfluxDB 2.0. |[readme](./karaf)| 2.0 |
Copy file name to clipboardExpand all lines: client-kotlin/README.md
+84Lines changed: 84 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ The reference Kotlin client that allows query and write for the InfluxDB 2.0 by
7
7
## Features
8
8
9
9
-[Querying data using Flux language](#queries)
10
+
-[Writing data](#writes)
10
11
-[Advanced Usage](#advanced-usage)
11
12
12
13
## Queries
@@ -78,6 +79,89 @@ fun main(args: Array<String>) = runBlocking {
78
79
}
79
80
```
80
81
82
+
## Writes
83
+
84
+
The [WriteKotlinApi](https://influxdata.github.io/influxdb-client-java/influxdb-client-kotlin/dokka/influxdb-client-kotlin/com.influxdb.client.kotlin/-write-kotlin-api/index.html) supports ingest data by:
85
+
-`DataPoint`
86
+
-`LineProtocol`
87
+
-`Data class`
88
+
- List of above items
89
+
90
+
The following example shows how to use various type of data:
0 commit comments