Uses of Class
com.couchbase.client.java.query.QueryMetaData
Packages that use QueryMetaData
Package
Description
Holds all classes that are needed for the Couchbase Java SDK.
Namespace for various query-service related classes.
-
Uses of QueryMetaData in com.couchbase.client.java
Methods in com.couchbase.client.java that return QueryMetaDataModifier and TypeMethodDescriptionCluster.queryStreaming
(String statement, QueryOptions options, Consumer<QueryRow> rowAction) Executes a SQL++ query statement using the specified options, (query parameters, etc.), and passes result rows to the givenrowAction
callback, one by one as they arrive from the server.Cluster.queryStreaming
(String statement, Consumer<QueryRow> rowAction) Executes a SQL++ query statement using default options, (no query parameters, etc.), and passes result rows to the givenrowAction
callback, one by one as they arrive from the server.Scope.queryStreaming
(String statement, QueryOptions options, Consumer<QueryRow> rowAction) Executes a SQL++ query statement in this scope using the specified options, (query parameters, etc.), and passes result rows to the givenrowAction
callback, one by one as they arrive from the server.Scope.queryStreaming
(String statement, Consumer<QueryRow> rowAction) Executes a SQL++ query statement in this scope using default options, (no query parameters, etc.), and passes result rows to the givenrowAction
callback, one by one as they arrive from the server. -
Uses of QueryMetaData in com.couchbase.client.java.query
Methods in com.couchbase.client.java.query that return QueryMetaDataModifier and TypeMethodDescriptionQueryResult.metaData()
Returns theQueryMetaData
giving access to the additional metadata associated with this query.Methods in com.couchbase.client.java.query that return types with arguments of type QueryMetaDataModifier and TypeMethodDescriptionReactiveQueryResult.metaData()
Returns aMono
containing aQueryMetaData
, giving access to the additional metadata associated with this query. -
Uses of QueryMetaData in com.couchbase.client.java.transactions
Methods in com.couchbase.client.java.transactions that return QueryMetaDataModifier and TypeMethodDescriptionTransactionQueryResult.metaData()
Returns theQueryMetaData
giving access to the additional metadata associated with this query.