Package com.couchbase.client.java.view
Class DefaultViewRow
java.lang.Object
com.couchbase.client.java.view.DefaultViewRow
- All Implemented Interfaces:
ViewRow
public class DefaultViewRow extends Object implements ViewRow
-
Constructor Summary
Constructors Constructor Description DefaultViewRow(CouchbaseEnvironment env, AsyncViewRow asyncViewRow)
-
Method Summary
Modifier and Type Method Description JsonDocument
document()
Load the underlying document, if not reduced with the default view timeout.JsonDocument
document(long timeout, TimeUnit timeUnit)
Load the underlying document, if not reduced with a custom timeout.<D extends Document<?>>
Ddocument(Class<D> target)
Load the underlying document, if not reduced with the default view timeout.<D extends Document<?>>
Ddocument(Class<D> target, long timeout, TimeUnit timeUnit)
Load the underlying document, if not reduced with a custom timeout.String
id()
The id of the document, if not reduced.Object
key()
The key of the row index.String
toString()
Object
value()
The value of the row index.
-
Constructor Details
-
DefaultViewRow
-
-
Method Details
-
id
Description copied from interface:ViewRow
The id of the document, if not reduced. -
key
Description copied from interface:ViewRow
The key of the row index. The object can be any valid JSON object, includingJsonArray
orJsonObject
. -
value
Description copied from interface:ViewRow
The value of the row index. The object can be any valid JSON object, includingJsonArray
orJsonObject
. -
document
Description copied from interface:ViewRow
Load the underlying document, if not reduced with the default view timeout. This method throws: -TimeoutException
wrapped in aRuntimeException
: If the timeout is exceeded. -BackpressureException
: If the incoming request rate is too high to be processed. -IllegalStateException
: If the view is reduced and the ID is null. -TranscodingException
: If the response document could not be decoded. -
document
Description copied from interface:ViewRow
Load the underlying document, if not reduced with a custom timeout. This method throws: -TimeoutException
wrapped in aRuntimeException
: If the timeout is exceeded. -BackpressureException
: If the incoming request rate is too high to be processed. -IllegalStateException
: If the view is reduced and the ID is null. -TranscodingException
: If the response document could not be decoded. -
document
Description copied from interface:ViewRow
Load the underlying document, if not reduced with the default view timeout. This method throws: -TimeoutException
wrapped in aRuntimeException
: If the timeout is exceeded. -BackpressureException
: If the incoming request rate is too high to be processed. -IllegalStateException
: If the view is reduced and the ID is null. -TranscodingException
: If the response document could not be decoded. -
document
Description copied from interface:ViewRow
Load the underlying document, if not reduced with a custom timeout. This method throws: -TimeoutException
wrapped in aRuntimeException
: If the timeout is exceeded. -BackpressureException
: If the incoming request rate is too high to be processed. -IllegalStateException
: If the view is reduced and the ID is null. -TranscodingException
: If the response document could not be decoded. -
toString
-