Uses of Enum Class
com.influxdb.client.domain.WritePrecision
Packages that use WritePrecision
Package
Description
-
Uses of WritePrecision in com.influxdb.client
Methods in com.influxdb.client that return WritePrecisionMethods in com.influxdb.client with parameters of type WritePrecisionModifier and TypeMethodDescriptionInfluxDBClientOptions.Builder.precision(WritePrecision precision) Specify the default precision for unix timestamps in the line protocol.<M> voidWriteApi.writeMeasurement(WritePrecision precision, M measurement) Write Measurement into specified bucket.<M> voidWriteApi.writeMeasurement(String bucket, String org, WritePrecision precision, M measurement) Write Measurement into specified bucket.<M> voidWriteApiBlocking.writeMeasurement(WritePrecision precision, M measurement) Write Measurement into specified bucket.<M> voidWriteApiBlocking.writeMeasurement(String bucket, String org, WritePrecision precision, M measurement) Write Measurement into specified bucket.<M> voidWriteApi.writeMeasurements(WritePrecision precision, List<M> measurements) Write Measurements into specified bucket.<M> voidWriteApi.writeMeasurements(String bucket, String org, WritePrecision precision, List<M> measurements) Write Measurements into specified bucket.<M> voidWriteApiBlocking.writeMeasurements(WritePrecision precision, List<M> measurements) Write Measurements into specified bucket.<M> voidWriteApiBlocking.writeMeasurements(String bucket, String org, WritePrecision precision, List<M> measurements) Write Measurements into specified bucket.voidWriteApi.writeRecord(WritePrecision precision, String record) Write Line Protocol record into specified bucket.voidWriteApi.writeRecord(String bucket, String org, WritePrecision precision, String record) Write Line Protocol record into specified bucket.voidWriteApiBlocking.writeRecord(WritePrecision precision, String record) Write Line Protocol record into specified bucket.voidWriteApiBlocking.writeRecord(String bucket, String org, WritePrecision precision, String record) Write Line Protocol record into specified bucket.voidWriteApi.writeRecords(WritePrecision precision, List<String> records) Write Line Protocol records into specified bucket.voidWriteApi.writeRecords(String bucket, String org, WritePrecision precision, List<String> records) Write Line Protocol records into specified bucket.voidWriteApiBlocking.writeRecords(WritePrecision precision, List<String> records) Write Line Protocol records into specified bucket.voidWriteApiBlocking.writeRecords(String bucket, String org, WritePrecision precision, List<String> records) Write Line Protocol records into specified bucket. -
Uses of WritePrecision in com.influxdb.client.domain
Methods in com.influxdb.client.domain that return WritePrecisionModifier and TypeMethodDescriptionstatic WritePrecisionWritePrecision.Adapter.read(com.google.gson.stream.JsonReader jsonReader) static WritePrecisionReturns the enum constant of this class with the specified name.static WritePrecision[]WritePrecision.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.influxdb.client.domain with parameters of type WritePrecisionModifier and TypeMethodDescriptionvoidWritePrecision.Adapter.write(com.google.gson.stream.JsonWriter jsonWriter, WritePrecision enumeration) -
Uses of WritePrecision in com.influxdb.client.internal
Methods in com.influxdb.client.internal with parameters of type WritePrecisionModifier and TypeMethodDescriptionprotected <M> AbstractWriteClient.BatchWriteDataMeasurementAbstractWriteBlockingClient.toMeasurementBatch(M measurement, WritePrecision precision) Constructors in com.influxdb.client.internal with parameters of type WritePrecisionModifierConstructorDescriptionBatchWriteDataMeasurement(Object measurement, WritePrecision precision, InfluxDBClientOptions options, MeasurementMapper measurementMapper) BatchWriteDataPoint(Point point, WritePrecision precision, InfluxDBClientOptions options) -
Uses of WritePrecision in com.influxdb.client.service
Methods in com.influxdb.client.service with parameters of type WritePrecisionModifier and TypeMethodDescriptionretrofit2.Call<Void> WriteService.postWrite(String org, String bucket, String body, String zapTraceSpan, String contentEncoding, String contentType, Integer contentLength, String accept, String orgID, WritePrecision precision, WriteConsistency consistency) Write data Writes data to a bucket.io.reactivex.rxjava3.core.Single<retrofit2.Response<Void>> WriteService.postWriteRx(String org, String bucket, String body, String zapTraceSpan, String contentEncoding, String contentType, Integer contentLength, String accept, String orgID, WritePrecision precision, WriteConsistency consistency) Write data Writes data to a bucket. -
Uses of WritePrecision in com.influxdb.client.write
Fields in com.influxdb.client.write declared as WritePrecisionModifier and TypeFieldDescriptionstatic final WritePrecisionWriteParameters.DEFAULT_WRITE_PRECISIONMethods in com.influxdb.client.write that return WritePrecisionModifier and TypeMethodDescriptionPoint.getPrecision()WriteParameters.precisionSafe(InfluxDBClientOptions options) Methods in com.influxdb.client.write with parameters of type WritePrecisionModifier and TypeMethodDescriptionWriteParameters.copy(WritePrecision precision, InfluxDBClientOptions options) Copy current parameters with new precision.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.Point.toLineProtocol(PointSettings pointSettings, WritePrecision precision) Constructors in com.influxdb.client.write with parameters of type WritePrecisionModifierConstructorDescriptionWriteParameters(WritePrecision precision, WriteConsistency consistency) Construct WriteAPI parameters.WriteParameters(String bucket, String org, WritePrecision precision) The backward internal constructor, please useWriteParameters(String, String, WritePrecision, WriteConsistency).WriteParameters(String bucket, String org, WritePrecision precision, WriteConsistency consistency) Construct WriteAPI parameters. -
Uses of WritePrecision in com.influxdb.client.write.events
Methods in com.influxdb.client.write.events that return WritePrecisionConstructors in com.influxdb.client.write.events with parameters of type WritePrecisionModifierConstructorDescriptionWriteSuccessEvent(String organization, String bucket, WritePrecision precision, String lineProtocol) -
Uses of WritePrecision in com.influxdb.client.write.internal
Methods in com.influxdb.client.write.internal with parameters of type WritePrecisionModifier and TypeMethodDescriptionstatic BigIntegerNanosecondConverter.convert(long millis, WritePrecision precision) Convert epoch timestamp (in millis) to a given precision.static BigIntegerNanosecondConverter.convert(Instant instant, WritePrecision precision) ConvertInstanttimestamp to a given precision.static BigIntegerNanosecondConverter.currentTimestamp(WritePrecision precision) Get current timestamp in a given precision.