Package | Description |
---|---|
com.couchbase.client.java.view |
Modifier and Type | Class and Description |
---|---|
class |
DefaultViewRow |
Modifier and Type | Method and Description |
---|---|
List<ViewRow> |
DefaultViewResult.allRows() |
List<ViewRow> |
ViewResult.allRows()
Collects all rows received from the view with the default view timeout.
|
List<ViewRow> |
DefaultViewResult.allRows(long timeout,
TimeUnit timeUnit) |
List<ViewRow> |
ViewResult.allRows(long timeout,
TimeUnit timeUnit)
Collects all rows received from the view with the default view timeout.
|
Iterator<ViewRow> |
DefaultViewResult.iterator() |
Iterator<ViewRow> |
DefaultViewResult.rows() |
Iterator<ViewRow> |
ViewResult.rows()
Emits one
ViewRow for each row received from the view with the default view timeout. |
Iterator<ViewRow> |
DefaultViewResult.rows(long timeout,
TimeUnit timeUnit) |
Iterator<ViewRow> |
ViewResult.rows(long timeout,
TimeUnit timeUnit)
Emits one
ViewRow for each row received from the view with a custom timeout. |
Copyright © 2015 Couchbase, Inc.