Uses of Class
com.influxdb.client.write.Point
Packages that use Point
Package
Description
-
Uses of Point in com.influxdb.client
Methods in com.influxdb.client with parameters of type PointModifier and TypeMethodDescriptionvoidWriteApi.writePoint(Point point) Write Data point into specified bucket.voidWriteApi.writePoint(Point point, WriteParameters parameters) Write Data point into specified bucket.voidWriteApi.writePoint(String bucket, String org, Point point) Write Data point into specified bucket.voidWriteApiBlocking.writePoint(Point point) Write Data point into specified bucket.voidWriteApiBlocking.writePoint(Point point, WriteParameters parameters) Write Data point into specified bucket.voidWriteApiBlocking.writePoint(String bucket, String org, Point point) Write Data point into specified bucket.Method parameters in com.influxdb.client with type arguments of type PointModifier and TypeMethodDescriptionvoidWriteApi.writePoints(String bucket, String org, List<Point> points) Write Data points into specified bucket.voidWriteApi.writePoints(List<Point> points) Write Data points into specified bucket.voidWriteApi.writePoints(List<Point> points, WriteParameters parameters) Write Data points into specified bucket.voidWriteApiBlocking.writePoints(String bucket, String org, List<Point> points) Write Data points into specified bucket.voidWriteApiBlocking.writePoints(List<Point> points) Write Data points into specified bucket.voidWriteApiBlocking.writePoints(List<Point> points, WriteParameters parameters) Write Data points into specified bucket. -
Uses of Point in com.influxdb.client.internal
Constructors in com.influxdb.client.internal with parameters of type PointModifierConstructorDescriptionBatchWriteDataPoint(Point point, WritePrecision precision, InfluxDBClientOptions options) BatchWriteDataPoint(Point point, InfluxDBClientOptions options) -
Uses of Point in com.influxdb.client.reactive
Methods in com.influxdb.client.reactive with parameters of type PointModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<WriteReactiveApi.Success> WriteReactiveApi.writePoint(WritePrecision precision, Point point) Write Data point into specified bucket.org.reactivestreams.Publisher<WriteReactiveApi.Success> WriteReactiveApi.writePoint(String bucket, String org, WritePrecision precision, Point point) Write Data point into specified bucket.Method parameters in com.influxdb.client.reactive with type arguments of type PointModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<WriteReactiveApi.Success> WriteReactiveApi.writePoints(WritePrecision precision, org.reactivestreams.Publisher<Point> points) Write Data points into specified bucket.org.reactivestreams.Publisher<WriteReactiveApi.Success> WriteReactiveApi.writePoints(String bucket, String org, WritePrecision precision, org.reactivestreams.Publisher<Point> points) Write Data points into specified bucket.org.reactivestreams.Publisher<WriteReactiveApi.Success> WriteReactiveApi.writePoints(org.reactivestreams.Publisher<Point> points, WriteParameters parameters) Write Data points into specified bucket. -
Uses of Point in com.influxdb.client.reactive.internal
Methods in com.influxdb.client.reactive.internal with parameters of type PointModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<WriteReactiveApi.Success> WriteReactiveApiImpl.writePoint(WritePrecision precision, Point point) org.reactivestreams.Publisher<WriteReactiveApi.Success> WriteReactiveApiImpl.writePoint(String bucket, String org, WritePrecision precision, Point point) Method parameters in com.influxdb.client.reactive.internal with type arguments of type PointModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<WriteReactiveApi.Success> WriteReactiveApiImpl.writePoints(WritePrecision precision, org.reactivestreams.Publisher<Point> points) org.reactivestreams.Publisher<WriteReactiveApi.Success> WriteReactiveApiImpl.writePoints(String bucket, String org, WritePrecision precision, org.reactivestreams.Publisher<Point> points) org.reactivestreams.Publisher<WriteReactiveApi.Success> WriteReactiveApiImpl.writePoints(org.reactivestreams.Publisher<Point> points, WriteParameters parameters) -
Uses of Point in com.influxdb.client.write
Methods in com.influxdb.client.write that return PointModifier and TypeMethodDescriptionAddBooleanfield.AddDoublefield.AddLongfield.AddNumberfield.AddStringfield.Adds or replaces fields for this point.Adds or replaces a tag value for this point.Adds or replaces tags for this point.static PointPoint.measurement(String measurementName) Create a new Point withe specified a measurement name.Point.time(Long time, WritePrecision precision) Updates the timestamp for the point.Point.time(Number time, WritePrecision precision) Updates the timestamp for the point.Point.time(Instant time, WritePrecision precision) Updates the timestamp for the point.