Class TransactionQueryResult
- java.lang.Object
-
- com.couchbase.client.java.transactions.TransactionQueryResult
-
public class TransactionQueryResult extends Object
The result of a N1QL query executed within a transaction, including rows and associated metadata.Queries executed inside a transaction are always blocking/non-streaming, to allow essential error handling logic to reliably take place.
-
-
Constructor Summary
Constructors Constructor Description TransactionQueryResult(QueryChunkHeader header, List<QueryChunkRow> rows, QueryChunkTrailer trailer, JsonSerializer serializer)
Creates a new TransactionQueryResult.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueryMetaData
metaData()
Returns theQueryMetaData
giving access to the additional metadata associated with this query.<T> List<T>
rowsAs(TypeRef<T> target)
Returns all rows, converted into instances of the target type.<T> List<T>
rowsAs(Class<T> target)
Returns all rows, converted into instances of the target class.List<JsonObject>
rowsAsObject()
Returns all rows, converted intoJsonObject
s.String
toString()
-
-
-
Constructor Detail
-
TransactionQueryResult
@Internal public TransactionQueryResult(QueryChunkHeader header, List<QueryChunkRow> rows, QueryChunkTrailer trailer, JsonSerializer serializer)
Creates a new TransactionQueryResult.- Parameters:
header
- the query header.rows
- the query rows.trailer
- the query trailer.
-
-
Method Detail
-
rowsAsObject
public List<JsonObject> rowsAsObject()
Returns all rows, converted intoJsonObject
s.- Throws:
DecodingFailureException
- if any row could not be successfully deserialized.
-
rowsAs
public <T> List<T> rowsAs(Class<T> target)
Returns all rows, converted into instances of the target class.- Parameters:
target
- the target class to deserialize into.- Throws:
DecodingFailureException
- if any row could not be successfully deserialized.
-
rowsAs
public <T> List<T> rowsAs(TypeRef<T> target)
Returns all rows, converted into instances of the target type.- Parameters:
target
- the target type to deserialize into.- Throws:
DecodingFailureException
- if any row could not be successfully deserialized.
-
metaData
public QueryMetaData metaData()
Returns theQueryMetaData
giving access to the additional metadata associated with this query.
-
-