Skip to content

Commit 18f1b64

Browse files
refactor: CHANGELOG.md
1 parent 764fbe7 commit 18f1b64

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### Features
44

55
1. [#229](https://github.com/InfluxCommunity/influxdb3-java/pull/229): Support proxy and custom ssl root certificates
6-
2. [#233](https://github.com/InfluxCommunity/influxdb3-java/pull/233): More detail documents about timestamp for query and write functions
6+
2. [#233](https://github.com/InfluxCommunity/influxdb3-java/pull/233): More detailed documentation about timestamp handling for query and write functions
77

88
## 1.0.0 [2024-12-11]
99

src/main/java/com/influxdb/v3/client/InfluxDBClient.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public interface InfluxDBClient extends AutoCloseable {
7777
*
7878
* @param point the {@link Point} to write, can be null
7979
* <p>
80-
* note: the timestamp passed will be converted to nanoseconds since the Unix epoch
80+
* Note: the timestamp passed will be converted to nanoseconds since the Unix epoch
8181
* by NanosecondConverter helper class
8282
*/
8383
void writePoint(@Nullable final Point point);
@@ -88,7 +88,7 @@ public interface InfluxDBClient extends AutoCloseable {
8888
* @param point the {@link Point} to write, can be null
8989
* @param options the options for writing data to InfluxDB
9090
* <p>
91-
* note: the timestamp passed will be converted to nanoseconds since the Unix epoch
91+
* Note: the timestamp passed will be converted to nanoseconds since the Unix epoch
9292
* by NanosecondConverter helper class
9393
*/
9494
void writePoint(@Nullable final Point point, @Nonnull final WriteOptions options);
@@ -98,7 +98,7 @@ public interface InfluxDBClient extends AutoCloseable {
9898
*
9999
* @param points the list of {@link Point} to write, cannot be null
100100
* <p>
101-
* note: the timestamp passed will be converted to nanoseconds since the Unix epoch
101+
* Note: the timestamp passed will be converted to nanoseconds since the Unix epoch
102102
* by NanosecondConverter helper class
103103
*/
104104
void writePoints(@Nonnull final List<Point> points);
@@ -109,7 +109,7 @@ public interface InfluxDBClient extends AutoCloseable {
109109
* @param points the list of {@link Point} to write, cannot be null
110110
* @param options the options for writing data to InfluxDB
111111
* <p>
112-
* note: the timestamp passed will be converted to nanoseconds since the Unix epoch
112+
* Note: the timestamp passed will be converted to nanoseconds since the Unix epoch
113113
* by NanosecondConverter helper class
114114
*/
115115
void writePoints(@Nonnull final List<Point> points, @Nonnull final WriteOptions options);
@@ -129,7 +129,7 @@ public interface InfluxDBClient extends AutoCloseable {
129129
* @param query the SQL query string to execute, cannot be null
130130
* @return Batches of rows returned by the query
131131
* <p>
132-
* note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
132+
* Note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
133133
*/
134134
@Nonnull
135135
Stream<Object[]> query(@Nonnull final String query);
@@ -151,7 +151,7 @@ public interface InfluxDBClient extends AutoCloseable {
151151
* @param parameters query named parameters
152152
* @return Batches of rows returned by the query
153153
* <p>
154-
* note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
154+
* Note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
155155
*/
156156
@Nonnull
157157
Stream<Object[]> query(@Nonnull final String query, @Nonnull final Map<String, Object> parameters);
@@ -172,7 +172,7 @@ public interface InfluxDBClient extends AutoCloseable {
172172
* @param options the options for querying data from InfluxDB
173173
* @return Batches of rows returned by the query
174174
* <p>
175-
* note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
175+
* Note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
176176
*/
177177
@Nonnull
178178
Stream<Object[]> query(@Nonnull final String query, @Nonnull final QueryOptions options);
@@ -195,7 +195,7 @@ public interface InfluxDBClient extends AutoCloseable {
195195
* @param options the options for querying data from InfluxDB
196196
* @return Batches of rows returned by the query
197197
* <p>
198-
* note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
198+
* Note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
199199
*/
200200
@Nonnull
201201
Stream<Object[]> query(@Nonnull final String query,
@@ -217,7 +217,7 @@ Stream<Object[]> query(@Nonnull final String query,
217217
* @param query the SQL query string to execute, cannot be null
218218
* @return Batches of PointValues returned by the query
219219
* <p>
220-
* note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
220+
* Note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
221221
*/
222222
@Nonnull
223223
Stream<PointValues> queryPoints(@Nonnull final String query);
@@ -239,7 +239,7 @@ Stream<Object[]> query(@Nonnull final String query,
239239
* @param parameters query named parameters
240240
* @return Batches of PointValues returned by the query
241241
* <p>
242-
* note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
242+
* Note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
243243
*/
244244
@Nonnull
245245
Stream<PointValues> queryPoints(@Nonnull final String query, @Nonnull final Map<String, Object> parameters);
@@ -260,7 +260,7 @@ Stream<Object[]> query(@Nonnull final String query,
260260
* @param options the options for querying data from InfluxDB
261261
* @return Batches of PointValues returned by the query
262262
* <p>
263-
* note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
263+
* Note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
264264
*/
265265
@Nonnull
266266
Stream<PointValues> queryPoints(@Nonnull final String query, @Nonnull final QueryOptions options);
@@ -284,7 +284,7 @@ Stream<Object[]> query(@Nonnull final String query,
284284
* @param options the options for querying data from InfluxDB
285285
* @return Batches of PointValues returned by the query
286286
* <p>
287-
* note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
287+
* Note: the timestamp will be returned as a number of nanoseconds since the Unix epoch
288288
*/
289289
@Nonnull
290290
Stream<PointValues> queryPoints(@Nonnull final String query,

0 commit comments

Comments
 (0)