Package | Description |
---|---|
org.influxdb | |
org.influxdb.impl | |
org.influxdb.msgpack |
Modifier and Type | Method and Description |
---|---|
QueryResult |
InfluxDB.query(Query query)
Execute a query against a database.
|
QueryResult |
InfluxDB.query(Query query,
TimeUnit timeUnit)
Execute a query against a database.
|
Modifier and Type | Method and Description |
---|---|
void |
InfluxDB.query(Query query,
Consumer<QueryResult> onSuccess,
Consumer<Throwable> onFailure)
Execute a query against a database.
|
void |
InfluxDB.query(Query query,
int chunkSize,
BiConsumer<InfluxDB.Cancellable,QueryResult> onNext)
Execute a streaming query against a database.
|
void |
InfluxDB.query(Query query,
int chunkSize,
BiConsumer<InfluxDB.Cancellable,QueryResult> onNext,
Runnable onComplete)
Execute a streaming query against a database.
|
void |
InfluxDB.query(Query query,
int chunkSize,
BiConsumer<InfluxDB.Cancellable,QueryResult> onNext,
Runnable onComplete,
Consumer<Throwable> onFailure)
Execute a streaming query against a database.
|
void |
InfluxDB.query(Query query,
int chunkSize,
Consumer<QueryResult> onNext)
Execute a streaming query against a database.
|
void |
InfluxDB.query(Query query,
int chunkSize,
Consumer<QueryResult> onNext,
Runnable onComplete)
Execute a streaming query against a database.
|
Modifier and Type | Method and Description |
---|---|
QueryResult |
InfluxDBImpl.query(Query query)
Execute a query against a database.
|
QueryResult |
InfluxDBImpl.query(Query query,
TimeUnit timeUnit)
Execute a query against a database.
|
Modifier and Type | Method and Description |
---|---|
<T> List<T> |
InfluxDBResultMapper.toPOJO(QueryResult queryResult,
Class<T> clazz)
Process a
QueryResult object returned by the InfluxDB client inspecting the internal
data structure and creating the respective object instances based on the Class passed as
parameter. |
<T> List<T> |
InfluxDBResultMapper.toPOJO(QueryResult queryResult,
Class<T> clazz,
String measurementName)
Process a
QueryResult object returned by the InfluxDB client inspecting the internal
data structure and creating the respective object instances based on the Class passed as
parameter. |
<T> List<T> |
InfluxDBResultMapper.toPOJO(QueryResult queryResult,
Class<T> clazz,
String measurementName,
TimeUnit precision)
Process a
QueryResult object returned by the InfluxDB client inspecting the internal
data structure and creating the respective object instances based on the Class passed as
parameter. |
<T> List<T> |
InfluxDBResultMapper.toPOJO(QueryResult queryResult,
Class<T> clazz,
TimeUnit precision)
Process a
QueryResult object returned by the InfluxDB client inspecting the internal
data structure and creating the respective object instances based on the Class passed as
parameter. |
Modifier and Type | Method and Description |
---|---|
void |
InfluxDBImpl.query(Query query,
Consumer<QueryResult> onSuccess,
Consumer<Throwable> onFailure)
Execute a query against a database.
|
void |
InfluxDBImpl.query(Query query,
int chunkSize,
BiConsumer<InfluxDB.Cancellable,QueryResult> onNext)
Execute a streaming query against a database.
|
void |
InfluxDBImpl.query(Query query,
int chunkSize,
BiConsumer<InfluxDB.Cancellable,QueryResult> onNext,
Runnable onComplete) |
void |
InfluxDBImpl.query(Query query,
int chunkSize,
BiConsumer<InfluxDB.Cancellable,QueryResult> onNext,
Runnable onComplete,
Consumer<Throwable> onFailure)
Execute a streaming query against a database.
|
void |
InfluxDBImpl.query(Query query,
int chunkSize,
Consumer<QueryResult> onNext)
Execute a streaming query against a database.
|
void |
InfluxDBImpl.query(Query query,
int chunkSize,
Consumer<QueryResult> onNext,
Runnable onComplete)
Execute a streaming query against a database.
|
Modifier and Type | Method and Description |
---|---|
QueryResult |
MessagePackResponseBodyConverter.convert(okhttp3.ResponseBody value) |
QueryResult |
MessagePackTraverser.parse(InputStream is)
Parse the message pack stream.
|
Modifier and Type | Method and Description |
---|---|
Iterable<QueryResult> |
MessagePackTraverser.traverse(InputStream is)
Traverse over the whole message pack stream.
|
Copyright © 2022. All rights reserved.