RichResultQuery

csw.database.scaladsl.JooqExtentions.RichResultQuery
final implicit class RichResultQuery(val resultQuery: ResultQuery[Record]) extends AnyVal

An extension on Jooq's ResultQuery#fetchAsync()

Value parameters

resultQuery

Jooq's ResultQuery type

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

Fetches the result in a Future. It is a wrapper on Jooq's ResultQuery#fetchAsync().

Fetches the result in a Future. It is a wrapper on Jooq's ResultQuery#fetchAsync().

Type parameters

R

the type to which result data gets casted

Value parameters

classTag

the class of type 'R' used to cast the result data

ec

ExecutionContext on which the async fetch call gets scheduled

Attributes

Returns

a Future that completes with a list of data 'R'

Concrete fields