class QueryScalaApiImpl extends AbstractQueryApi with QueryScalaApi
- Alphabetic
- By Inheritance
- QueryScalaApiImpl
- QueryScalaApi
- AbstractQueryApi
- AbstractRestClient
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new QueryScalaApiImpl(service: QueryService, options: InfluxDBClientOptions)
Type Members
-
final
class
FluxRecordIterator extends Iterator[FluxRecord] with Closeable with Consumer[ResponseBody]
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractQueryApi
-
final
class
RawIterator extends Iterator[String] with Closeable with Consumer[ResponseBody]
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractQueryApi
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
createBody(arg0: String, arg1: String): RequestBody
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractQueryApi
- Annotations
- @Nonnull()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
execute[T](arg0: Call[T]): T
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractRestClient
- Annotations
- @throws( ... )
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
getLogLevel(arg0: HttpLoggingInterceptor): LogLevel
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractRestClient
- Annotations
- @Nonnull()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
ping(arg0: Call[ResponseBody]): Boolean
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractRestClient
- Annotations
- @Nonnull()
-
def
query[M](query: Query, org: String, measurementType: Class[M]): Source[M, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream measurements to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream measurements to Stream.
- M
the type of the measurement (POJO)
- query
the flux query to execute
- org
specifies the source organization
- measurementType
the measurement (POJO)
- returns
the stream of measurements
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
query[M](query: Query, measurementType: Class[M]): Source[M, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream measurements to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream measurements to Stream.
com.influxdb.client.InfluxDBClientOptions#getOrg() will be used as source organization.
- M
the type of the measurement (POJO)
- query
the flux query to execute
- measurementType
the measurement (POJO)
- returns
the stream of measurements
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
query[M](query: String, org: String, measurementType: Class[M]): Source[M, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream measurements to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream measurements to Stream.
- M
the type of the measurement (POJO)
- query
the flux query to execute
- org
specifies the source organization
- measurementType
the measurement (POJO)
- returns
the stream of measurements
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
query[M](query: String, measurementType: Class[M]): Source[M, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream measurements to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream measurements to Stream.
com.influxdb.client.InfluxDBClientOptions#getOrg() will be used as source organization.
- M
the type of the measurement (POJO)
- query
the flux query to execute
- measurementType
the measurement (POJO)
- returns
the stream of measurements
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
query(query: Query, org: String): Source[FluxRecord, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream FluxRecords to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream FluxRecords to Stream.
- query
the flux query to execute
- org
specifies the source organization
- returns
the stream of FluxRecords
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
query(query: Query): Source[FluxRecord, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream FluxRecords to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream FluxRecords to Stream.
com.influxdb.client.InfluxDBClientOptions#getOrg() will be used as source organization.
- query
the flux query to execute
- returns
the stream of FluxRecords
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
query(query: String, org: String): Source[FluxRecord, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream FluxRecords to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream FluxRecords to Stream.
- query
the flux query to execute
- org
specifies the source organization
- returns
the stream of FluxRecords
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
query(query: String): Source[FluxRecord, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream FluxRecords to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream FluxRecords to Stream.
com.influxdb.client.InfluxDBClientOptions#getOrg() will be used as source organization.
- query
the flux query to execute
- returns
the stream of FluxRecords
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
query(arg0: Call[ResponseBody], arg1: FluxResponseConsumer, arg2: Consumer[_ >: Throwable], arg3: Runnable, arg4: Boolean): Unit
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractQueryApi
-
def
queryIterator(arg0: Call[ResponseBody]): FluxRecordIterator
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractQueryApi
-
def
queryRaw(query: Query, org: String): Source[String, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
- query
the flux query to execute
- org
specifies the source organization
- returns
the response stream
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
queryRaw(query: Query): Source[String, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
com.influxdb.client.InfluxDBClientOptions#getOrg() will be used as source organization.
- query
the flux query to execute
- returns
the response stream
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
queryRaw(query: String, dialect: Dialect, org: String): Source[String, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
- query
the flux query to execute
- dialect
Dialect is an object defining the options to use when encoding the response. See dialect SPEC.
- org
specifies the source organization
- returns
the response stream
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
queryRaw(query: String, dialect: Dialect): Source[String, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
com.influxdb.client.InfluxDBClientOptions#getOrg() will be used as source organization.
- query
the flux query to execute
- dialect
Dialect is an object defining the options to use when encoding the response. See dialect SPEC.
- returns
the response stream
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
queryRaw(query: String, org: String): Source[String, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
- query
the flux query to execute
- org
specifies the source organization
- returns
the response stream
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
queryRaw(query: String): Source[String, NotUsed]
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
Executes the Flux query against the InfluxDB and asynchronously stream response to Stream.
com.influxdb.client.InfluxDBClientOptions#getOrg() will be used as source organization.
- query
the flux query to execute
- returns
the response stream
- Definition Classes
- QueryScalaApiImpl → QueryScalaApi
-
def
queryRaw(arg0: Call[ResponseBody], arg1: BiConsumer[Cancellable, String], arg2: Consumer[_ >: Throwable], arg3: Runnable, arg4: Boolean): Unit
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractQueryApi
-
def
queryRawIterator(arg0: Call[ResponseBody]): RawIterator
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractQueryApi
-
def
responseToError(arg0: Response[_]): InfluxException
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractRestClient
- Annotations
- @Nonnull()
-
def
setLogLevel(arg0: HttpLoggingInterceptor, arg1: LogLevel): Unit
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractRestClient
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toInfluxException(arg0: Throwable): InfluxException
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractRestClient
- Annotations
- @Nonnull()
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
version(arg0: Call[ResponseBody]): String
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractRestClient
- Annotations
- @Nonnull()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
object
FluxRecordIterator
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractQueryApi
-
object
RawIterator
- Attributes
- protected[influxdb.internal]
- Definition Classes
- AbstractQueryApi