Class ViewResult


  • public class ViewResult
    extends Object
    Holds a the result of a View request operation if successful.
    Since:
    3.0.0
    • Method Detail

      • allRows

        public List<ViewRow> allRows()
        Convenience method to collect all rows() into a List.

        Be careful when using this method on a large result since it will end up buffering the complete result set in memory. This is very helpful for small queries and exploration, but for larger responses we recommend using either the blocking rows() method or the reactive variants for ultimate control.

        Returns:
        a collected list of ViewRows.
      • meta

        public ViewMeta meta()
        Returns the metadata associated with this ViewResult.
        Returns:
        the metadata associated.