Packages

class QueryResult extends AnyRef

Holds all the necessary pieces to actually run a query, but doesn't run it yet

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryResult
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new QueryResult(schema: SimpleFeatureType, hints: Hints, plans: Seq[QueryPlan], planTimeNanos: Long, querySteps: Seq[QueryStep], timer: FinalQueryStep)

    schema

    return schema of the iterators returned by this class

    hints

    query hints

    plans

    query plans for executing the query

    planTimeNanos

    time spent planning the query

    querySteps

    processing steps to apply on top of the query plans

    timer

    final step to apply, creating a timed iterator for metrics tracking

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  10. val hints: Hints
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def iterator(timerCallback: (Long) ⇒ Unit, counterCallback: (Long) ⇒ Unit): CloseableIterator[SimpleFeature]

    Executes the query

    Executes the query

    timerCallback

    callback for time spent running the query, will be invoked when the iterator is closed with the time in nanoseconds

    counterCallback

    callback for the number of results returned by the query, will be invoked when the iterator is closed

  13. def iterator(): CloseableIterator[SimpleFeature]

    Executes the query

  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  17. val planTimeNanos: Long
  18. val plans: Seq[QueryPlan]
  19. val schema: SimpleFeatureType
  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    QueryResult → AnyRef → Any
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped