Interface IQueryApi
Namespace: InfluxDB.Client
Assembly: InfluxDB.Client.dll
Syntax
public interface IQueryApi
Methods
QueryAsync(Query, Action<FluxRecord>, Action<Exception>, Action, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and asynchronously stream FluxRecord
to
Declaration
Task QueryAsync(Query query, Action<FluxRecord> onNext, Action<Exception> onError = null, Action onComplete = null, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Query | query | the flux query to execute |
Action<FluxRecord> | onNext | the callback to consume the FluxRecord result |
Action<Exception> | onError | the callback to consume any error notification |
Action | onComplete | the callback to consume a notification about successfully end of stream |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task | async task |
QueryAsync(Query, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and synchronously map whole response to FluxTables.
NOTE: This method is not intended for large query results.
Use
Declaration
Task<List<FluxTable>> QueryAsync(Query query, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Query | query | the flux query to execute |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task<List<FluxTable>> | FluxTables that are matched the query |
QueryAsync(Query, Type, Action<Object>, Action<Exception>, Action, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and asynchronously stream Measurements
to a
Declaration
Task QueryAsync(Query query, Type pocoType, Action<object> onNext, Action<Exception> onError = null, Action onComplete = null, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Query | query | the flux query to execute |
Type | pocoType | the type of measurement |
Action<System.Object> | onNext | the callback to consume the mapped Measurements |
Action<Exception> | onError | the callback to consume any error notification |
Action | onComplete | the callback to consume a notification about successfully end of stream |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task | async task |
QueryAsync(Query, Type, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and synchronously map whole response to list of object with given type.
NOTE: This method is not intended for large query results.
Use
Declaration
Task<List<object>> QueryAsync(Query query, Type pocoType, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Query | query | the flux query to execute |
Type | pocoType | the type of measurement |
System.String | org | the organization |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task<List<System.Object>> | Measurements which are matched the query |
QueryAsync(String, Action<FluxRecord>, Action<Exception>, Action, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and asynchronously stream FluxRecord
to
Declaration
Task QueryAsync(string query, Action<FluxRecord> onNext, Action<Exception> onError = null, Action onComplete = null, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | the flux query to execute |
Action<FluxRecord> | onNext | the callback to consume the FluxRecord result |
Action<Exception> | onError | the callback to consume any error notification |
Action | onComplete | the callback to consume a notification about successfully end of stream |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task | async task |
QueryAsync(String, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and synchronously map whole response to FluxTables.
NOTE: This method is not intended for large query results.
Use
Declaration
Task<List<FluxTable>> QueryAsync(string query, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | the flux query to execute |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task<List<FluxTable>> | FluxTables that are matched the query |
QueryAsync(String, Type, Action<Object>, Action<Exception>, Action, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and asynchronously stream Measurements
to a
Declaration
Task QueryAsync(string query, Type pocoType, Action<object> onNext, Action<Exception> onError = null, Action onComplete = null, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | the flux query to execute |
Type | pocoType | the type of measurement |
Action<System.Object> | onNext | the callback to consume the mapped Measurements |
Action<Exception> | onError | the callback to consume any error notification |
Action | onComplete | the callback to consume a notification about successfully end of stream |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task | async task |
QueryAsync(String, Type, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and synchronously map whole response to list of object with given type.
NOTE: This method is not intended for large query results.
Use
Declaration
Task<List<object>> QueryAsync(string query, Type pocoType, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | the flux query to execute |
Type | pocoType | the type of measurement |
System.String | org | the organization |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task<List<System.Object>> | Measurements which are matched the query |
QueryAsync<T>(Query, Action<T>, Action<Exception>, Action, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and asynchronously stream Measurements
to a
Declaration
Task QueryAsync<T>(Query query, Action<T> onNext, Action<Exception> onError = null, Action onComplete = null, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Query | query | the flux query to execute |
Action<T> | onNext | the callback to consume the mapped Measurements |
Action<Exception> | onError | the callback to consume any error notification |
Action | onComplete | the callback to consume a notification about successfully end of stream |
System.String | org | specifies the source organization |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task | async task |
Type Parameters
Name | Description |
---|---|
T | the type of measurement |
QueryAsync<T>(Query, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and synchronously map whole response to list of object with given type.
NOTE: This method is not intended for large query results.
Use
Declaration
Task<List<T>> QueryAsync<T>(Query query, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Query | query | the flux query to execute |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task<List<T>> | Measurements which are matched the query |
Type Parameters
Name | Description |
---|---|
T | the type of measurement |
QueryAsync<T>(String, Action<T>, Action<Exception>, Action, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and asynchronously stream Measurements
to a
Declaration
Task QueryAsync<T>(string query, Action<T> onNext, Action<Exception> onError = null, Action onComplete = null, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | the flux query to execute |
Action<T> | onNext | the callback to consume the mapped Measurements |
Action<Exception> | onError | the callback to consume any error notification |
Action | onComplete | the callback to consume a notification about successfully end of stream |
System.String | org | specifies the source organization |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task | async task |
Type Parameters
Name | Description |
---|---|
T | the type of measurement |
QueryAsync<T>(String, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and synchronously map whole response to list of object with given type.
NOTE: This method is not intended for large query results.
Use
Declaration
Task<List<T>> QueryAsync<T>(string query, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | the flux query to execute |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task<List<T>> | Measurements which are matched the query |
Type Parameters
Name | Description |
---|---|
T | the type of measurement |
QueryAsyncEnumerable<T>(Query, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and asynchronously maps
response to enumerable of objects of type T
.
Declaration
IAsyncEnumerable<T> QueryAsyncEnumerable<T>(Query query, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Query | query | the flux query to execute |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | cancellation token |
Returns
Type | Description |
---|---|
IAsyncEnumerable<T> | Measurements which are matched the query |
Type Parameters
Name | Description |
---|---|
T | the type of measurement |
QueryAsyncEnumerable<T>(String, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and asynchronously maps
response to enumerable of objects of type T
.
Declaration
IAsyncEnumerable<T> QueryAsyncEnumerable<T>(string query, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | the flux query to execute |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | cancellation token |
Returns
Type | Description |
---|---|
IAsyncEnumerable<T> | Measurements which are matched the query |
Type Parameters
Name | Description |
---|---|
T | the type of measurement |
QueryRawAsync(Query, Action<String>, Action<Exception>, Action, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and asynchronously stream response
(line by line) to
Declaration
Task QueryRawAsync(Query query, Action<string> onResponse, Action<Exception> onError = null, Action onComplete = null, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Query | query | the flux query to execute |
Action<System.String> | onResponse | the callback to consume the response line by line |
Action<Exception> | onError | callback to consume any error notification |
Action | onComplete | callback to consume a notification about successfully end of stream |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task |
QueryRawAsync(Query, String, CancellationToken)
Executes the Flux query against the InfluxDB and synchronously map whole response to
NOTE: This method is not intended for large query results.
Use
Declaration
Task<string> QueryRawAsync(Query query, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Query | query | the flux query to execute |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task<System.String> | the raw response that matched the query |
QueryRawAsync(String, Action<String>, Dialect, Action<Exception>, Action, String, CancellationToken)
Executes the Flux query against the InfluxDB 2.x and asynchronously stream response
(line by line) to
Declaration
Task QueryRawAsync(string query, Action<string> onResponse, Dialect dialect = null, Action<Exception> onError = null, Action onComplete = null, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | the flux query to execute |
Action<System.String> | onResponse | the callback to consume the response line by line |
Dialect | dialect | Dialect is an object defining the options to use when encoding the response. See dialect SPEC. |
Action<Exception> | onError | callback to consume any error notification |
Action | onComplete | callback to consume a notification about successfully end of stream |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task |
QueryRawAsync(String, Dialect, String, CancellationToken)
Executes the Flux query against the InfluxDB and synchronously map whole response to
NOTE: This method is not intended for large query results.
Use
Declaration
Task<string> QueryRawAsync(string query, Dialect dialect = null, string org = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | the flux query to execute |
Dialect | dialect | Dialect is an object defining the options to use when encoding the response. See dialect SPEC. |
System.String | org | specifies the source organization. If the org is not specified then is used config from Org. |
CancellationToken | cancellationToken | Token that enables callers to cancel the request. |
Returns
Type | Description |
---|---|
Task<System.String> | the raw response that matched the query |