Uses of Class
com.influxdb.v3.client.write.WriteOptions
-
Packages that use WriteOptions Package Description com.influxdb.v3.client com.influxdb.v3.client.internal com.influxdb.v3.client.write -
-
Uses of WriteOptions in com.influxdb.v3.client
Methods in com.influxdb.v3.client with parameters of type WriteOptions Modifier and Type Method Description void
InfluxDBClient. writePoint(Point point, WriteOptions options)
Write aPoint
to the InfluxDB server.void
InfluxDBClient. writePoints(List<Point> points, WriteOptions options)
Write a list ofPoint
to the InfluxDB server.void
InfluxDBClient. writeRecord(String record, WriteOptions options)
Write a record specified in the InfluxDB Line Protocol to the InfluxDB server.void
InfluxDBClient. writeRecords(List<String> records, WriteOptions options)
Write records specified in the InfluxDB Line Protocol to the InfluxDB server. -
Uses of WriteOptions in com.influxdb.v3.client.internal
Methods in com.influxdb.v3.client.internal with parameters of type WriteOptions Modifier and Type Method Description void
InfluxDBClientImpl. writePoint(Point point, WriteOptions options)
void
InfluxDBClientImpl. writePoints(List<Point> points, WriteOptions options)
void
InfluxDBClientImpl. writeRecord(String record, WriteOptions options)
void
InfluxDBClientImpl. writeRecords(List<String> records, WriteOptions options)
-
Uses of WriteOptions in com.influxdb.v3.client.write
Fields in com.influxdb.v3.client.write declared as WriteOptions Modifier and Type Field Description static WriteOptions
WriteOptions. DEFAULTS
Default WriteOptions.Methods in com.influxdb.v3.client.write that return WriteOptions Modifier and Type Method Description WriteOptions
WriteOptions.Builder. build()
Build an instance ofClientConfig
.
-