Packages

p

quix.core

results

package results

Type Members

  1. class MultiBuilder extends Builder with LazyLogging

    MultiBuilder accepts Consumer[ExecutionEvent] and propagates to it different events from lifecycle of Builder.

    MultiBuilder accepts Consumer[ExecutionEvent] and propagates to it different events from lifecycle of Builder. For example,

    start(query: Execution)

    will produce

    Start(query.id, query.statements.size)

    start(query: Execution) }}}

  2. class SingleBuilder extends Builder with LazyLogging

    SingleBuilder accepts rows and stores them in memory in order of their arrival.

    SingleBuilder accepts rows and stores them in memory in order of their arrival. SingleBuilder is used by internal quix-backend processes such as db-tree traversal or E2E tests. To receive the rows collected so far, one must call builder.build()

Ungrouped