Index
All Classes and Interfaces|All Packages
B
- build() - Method in class com.influxdb.client.flux.FluxConnectionOptions.Builder
-
Build an instance of FluxConnectionOptions.
- builder() - Static method in class com.influxdb.client.flux.FluxConnectionOptions
-
Creates a builder instance.
- builder(String) - Static method in class com.influxdb.client.flux.FluxConnectionOptions
- Builder() - Constructor for class com.influxdb.client.flux.FluxConnectionOptions.Builder
C
- close() - Method in interface com.influxdb.client.flux.FluxClient
-
Shutdown and close the client.
- close() - Method in class com.influxdb.client.flux.internal.FluxApiImpl
-
Closes the client, initiates shutdown, no new running calls are accepted during shutdown.
- com.influxdb.client.flux - package com.influxdb.client.flux
- com.influxdb.client.flux.internal - package com.influxdb.client.flux.internal
- create(FluxConnectionOptions) - Static method in class com.influxdb.client.flux.FluxClientFactory
-
Create an instance of the Flux client.
- create(String) - Static method in class com.influxdb.client.flux.FluxClientFactory
-
Create an instance of the Flux client.
F
- FluxApiImpl - Class in com.influxdb.client.flux.internal
- FluxApiImpl(FluxConnectionOptions) - Constructor for class com.influxdb.client.flux.internal.FluxApiImpl
- FluxClient - Interface in com.influxdb.client.flux
-
The client that allows perform Flux queries against the InfluxDB /api/v2/query endpoint.
- FluxClientFactory - Class in com.influxdb.client.flux
-
The Factory that creates an instance of a Flux client.
- FluxConnectionOptions - Class in com.influxdb.client.flux
-
FluxConnectionOptions are used to configure queries to the Flux.
- FluxConnectionOptions.Builder - Class in com.influxdb.client.flux
-
A builder for
FluxConnectionOptions
. - FluxService - Interface in com.influxdb.client.flux.internal
G
- getLogLevel() - Method in interface com.influxdb.client.flux.FluxClient
-
Gets the
LogLevel
that is used for logging requests and responses. - getLogLevel() - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- getOkHttpClient() - Method in class com.influxdb.client.flux.FluxConnectionOptions
- getParameters() - Method in class com.influxdb.client.flux.FluxConnectionOptions
- getUrl() - Method in class com.influxdb.client.flux.FluxConnectionOptions
O
- okHttpClient(OkHttpClient.Builder) - Method in class com.influxdb.client.flux.FluxConnectionOptions.Builder
-
Set the HTTP client to use for communication with Flux.
P
- ping() - Method in interface com.influxdb.client.flux.FluxClient
-
Check the status of InfluxDB Server.
- ping() - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- ping() - Method in interface com.influxdb.client.flux.internal.FluxService
Q
- query(String) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and synchronously map whole response to
List<FluxTable>
. - query(String) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- query(String, Class<M>) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and synchronously map whole response to list of object with given type.
- query(String, Class<M>) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- query(String, Class<M>, BiConsumer<Cancellable, M>) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream POJO classes to
onNext
consumer. - query(String, Class<M>, BiConsumer<Cancellable, M>) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- query(String, Class<M>, BiConsumer<Cancellable, M>, Consumer<? super Throwable>) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream POJO classes to
onNext
consumer. - query(String, Class<M>, BiConsumer<Cancellable, M>, Consumer<? super Throwable>) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- query(String, Class<M>, BiConsumer<Cancellable, M>, Consumer<? super Throwable>, Runnable) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query and asynchronously stream result as POJO.
- query(String, Class<M>, BiConsumer<Cancellable, M>, Consumer<? super Throwable>, Runnable) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- query(String, BiConsumer<Cancellable, FluxRecord>) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream
FluxRecord
s toonNext
consumer. - query(String, BiConsumer<Cancellable, FluxRecord>) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- query(String, BiConsumer<Cancellable, FluxRecord>, Consumer<? super Throwable>) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream
FluxRecord
s toonNext
consumer. - query(String, BiConsumer<Cancellable, FluxRecord>, Consumer<? super Throwable>) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- query(String, BiConsumer<Cancellable, FluxRecord>, Consumer<? super Throwable>, Runnable) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream
FluxRecord
s toonNext
consumer. - query(String, BiConsumer<Cancellable, FluxRecord>, Consumer<? super Throwable>, Runnable) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- query(RequestBody) - Method in interface com.influxdb.client.flux.internal.FluxService
- queryRaw(String) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and synchronously map whole response to
String
result. - queryRaw(String) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- queryRaw(String, String) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and synchronously map whole response to
String
result. - queryRaw(String, String) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- queryRaw(String, String, BiConsumer<Cancellable, String>) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream response (line by line) to
onResponse
. - queryRaw(String, String, BiConsumer<Cancellable, String>) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- queryRaw(String, String, BiConsumer<Cancellable, String>, Consumer<? super Throwable>) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream response (line by line) to
onResponse
. - queryRaw(String, String, BiConsumer<Cancellable, String>, Consumer<? super Throwable>) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- queryRaw(String, String, BiConsumer<Cancellable, String>, Consumer<? super Throwable>, Runnable) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream response (line by line) to
onResponse
. - queryRaw(String, String, BiConsumer<Cancellable, String>, Consumer<? super Throwable>, Runnable) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- queryRaw(String, BiConsumer<Cancellable, String>) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream response (line by line) to
onResponse
. - queryRaw(String, BiConsumer<Cancellable, String>) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- queryRaw(String, BiConsumer<Cancellable, String>, Consumer<? super Throwable>) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream response (line by line) to
onResponse
. - queryRaw(String, BiConsumer<Cancellable, String>, Consumer<? super Throwable>) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
- queryRaw(String, BiConsumer<Cancellable, String>, Consumer<? super Throwable>, Runnable) - Method in interface com.influxdb.client.flux.FluxClient
-
Executes the Flux query against the InfluxDB and asynchronously stream response (line by line) to
onResponse
. - queryRaw(String, BiConsumer<Cancellable, String>, Consumer<? super Throwable>, Runnable) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
S
- setLogLevel(LogLevel) - Method in interface com.influxdb.client.flux.FluxClient
-
Sets the log level for the request and response information.
- setLogLevel(LogLevel) - Method in class com.influxdb.client.flux.internal.FluxApiImpl
U
- url(String) - Method in class com.influxdb.client.flux.FluxConnectionOptions.Builder
-
Set the url to connect to Flux.
V
- version() - Method in interface com.influxdb.client.flux.FluxClient
-
Returns the version of the connected InfluxDB Server.
- version() - Method in class com.influxdb.client.flux.internal.FluxApiImpl
W
- withParam(String, String) - Method in class com.influxdb.client.flux.FluxConnectionOptions.Builder
All Classes and Interfaces|All Packages