Class

io.getquill.context.async

AsyncContext

Related Doc: package async

Permalink

abstract class AsyncContext[D <: SqlIdiom, N <: NamingStrategy, C <: Connection] extends SqlContext[D, N, RowData, BindedStatementBuilder[List[Any]]] with Decoders with Encoders

Linear Supertypes
Encoders, Decoders, SqlContext[D, N, RowData, BindedStatementBuilder[List[Any]]], SqlDsl, Context[RowData, BindedStatementBuilder[List[Any]]], CoreDsl, QuotationDsl, QueryDsl, OrdDsl, InfixDsl, Closeable, AutoCloseable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AsyncContext
  2. Encoders
  3. Decoders
  4. SqlContext
  5. SqlDsl
  6. Context
  7. CoreDsl
  8. QuotationDsl
  9. QueryDsl
  10. OrdDsl
  11. InfixDsl
  12. Closeable
  13. AutoCloseable
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AsyncContext(pool: PartitionedConnectionPool[C])

    Permalink

Type Members

  1. sealed trait Action[T] extends AnyRef

    Permalink
    Definition Classes
    QueryDsl
  2. type ActionResult[T] = Future[Long]

    Permalink
    Definition Classes
    AsyncContext → SqlContext
  3. type BatchedActionResult[T] = Future[List[Long]]

    Permalink
    Definition Classes
    AsyncContext → SqlContext
  4. type Decoder[T] = context.Decoder[RowData, T]

    Permalink
    Definition Classes
    Context
  5. sealed trait Delete[T] extends Action[T]

    Permalink
    Definition Classes
    QueryDsl
  6. type Encoder[T] = context.Encoder[BindedStatementBuilder[List[Any]], T]

    Permalink
    Definition Classes
    Context
  7. sealed trait EntityQuery[T] extends Query[T]

    Permalink
    Definition Classes
    QueryDsl
  8. implicit class InfixInterpolator extends AnyRef

    Permalink
    Definition Classes
    InfixDsl
  9. sealed trait Insert[T] extends Action[T]

    Permalink
    Definition Classes
    QueryDsl
  10. sealed trait JoinQuery[A, B, R] extends Query[R]

    Permalink
    Definition Classes
    QueryDsl
  11. implicit class Like extends AnyRef

    Permalink
    Definition Classes
    SqlDsl
  12. case class MappedEncoding[I, O] extends Product with Serializable

    Permalink
    Definition Classes
    Context
  13. trait NumericDecoder[T] extends AsyncContext.Decoder[T]

    Permalink
    Definition Classes
    Decoders
  14. trait Ord[T] extends AnyRef

    Permalink
    Definition Classes
    OrdDsl
  15. sealed trait Query[+T] extends AnyRef

    Permalink
    Definition Classes
    QueryDsl
  16. type QueryResult[T] = Future[List[T]]

    Permalink
    Definition Classes
    AsyncContext → SqlContext
  17. trait Quoted[+T] extends AnyRef

    Permalink
    Definition Classes
    QuotationDsl
  18. sealed trait Schema[T] extends AnyRef

    Permalink
    Definition Classes
    QueryDsl
  19. type SingleQueryResult[T] = Future[T]

    Permalink
    Definition Classes
    AsyncContext → SqlContext
  20. sealed trait UnassignedAction[T] extends Action[T]

    Permalink
    Definition Classes
    QueryDsl
  21. sealed trait Update[T] extends Action[T]

    Permalink
    Definition Classes
    QueryDsl

Abstract Value Members

  1. abstract def extractActionResult(generated: Option[String])(result: com.github.mauricio.async.db.QueryResult): Long

    Permalink
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. implicit val bigDecimalDecoder: Decoder[BigDecimal]

    Permalink
    Definition Classes
    Decoders
  6. implicit val bigDecimalEncoder: Encoder[BigDecimal]

    Permalink
    Definition Classes
    Encoders
  7. implicit val booleanDecoder: Decoder[Boolean]

    Permalink
    Definition Classes
    Decoders
  8. implicit val booleanEncoder: Encoder[Boolean]

    Permalink
    Definition Classes
    Encoders
  9. implicit val byteArrayDecoder: Decoder[Array[Byte]]

    Permalink
    Definition Classes
    Decoders
  10. implicit val byteArrayEncoder: Encoder[Array[Byte]]

    Permalink
    Definition Classes
    Encoders
  11. implicit val byteDecoder: Decoder[Byte]

    Permalink
    Definition Classes
    Decoders
  12. implicit val byteEncoder: Encoder[Byte]

    Permalink
    Definition Classes
    Encoders
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def close(): Unit

    Permalink
    Definition Classes
    AsyncContext → Closeable → AutoCloseable
  15. implicit val dateDecoder: Decoder[Date]

    Permalink
    Definition Classes
    Decoders
  16. implicit val dateEncoder: Encoder[Date]

    Permalink
    Definition Classes
    Encoders
  17. def decoder[T](f: PartialFunction[Any, T] = PartialFunction.empty)(implicit arg0: ClassTag[T]): Decoder[T]

    Permalink
    Definition Classes
    Decoders
  18. implicit val doubleDecoder: Decoder[Double]

    Permalink
    Definition Classes
    Decoders
  19. implicit val doubleEncoder: Encoder[Double]

    Permalink
    Definition Classes
    Encoders
  20. def encoder[T](f: (T) ⇒ Any): Encoder[T]

    Permalink
    Definition Classes
    Encoders
  21. def encoder[T]: Encoder[T]

    Permalink
    Definition Classes
    Encoders
  22. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  24. def executeAction(sql: String, bind: (BindedStatementBuilder[List[Any]]) ⇒ BindedStatementBuilder[List[Any]] = identity, generated: Option[String] = None)(implicit ec: ExecutionContext): Future[Long]

    Permalink
  25. def executeActionBatch[T](sql: String, bindParams: (T) ⇒ (BindedStatementBuilder[List[Any]]) ⇒ BindedStatementBuilder[List[Any]] = ..., generated: Option[String] = None)(implicit ec: ExecutionContext): ActionApply[T]

    Permalink
  26. def executeQuery[T](sql: String, extractor: (RowData) ⇒ T = identity[RowData], bind: (BindedStatementBuilder[List[Any]]) ⇒ BindedStatementBuilder[List[Any]] = identity)(implicit ec: ExecutionContext): Future[List[T]]

    Permalink
  27. def executeQuerySingle[T](sql: String, extractor: (RowData) ⇒ T = identity[RowData], bind: (BindedStatementBuilder[List[Any]]) ⇒ BindedStatementBuilder[List[Any]] = identity)(implicit ec: ExecutionContext): Future[T]

    Permalink
  28. def expandAction(sql: String, generated: Option[String]): String

    Permalink
    Attributes
    protected
  29. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  30. implicit val floatDecoder: Decoder[Float]

    Permalink
    Definition Classes
    Decoders
  31. implicit val floatEncoder: Encoder[Float]

    Permalink
    Definition Classes
    Encoders
  32. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  33. def handleSingleResult[T](list: List[T]): T

    Permalink
    Attributes
    protected
    Definition Classes
    Context
  34. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  35. implicit def implicitOrd[T]: Ord[T]

    Permalink
    Definition Classes
    OrdDsl
    Annotations
    @compileTimeOnly( ... )
  36. implicit val intDecoder: Decoder[Int]

    Permalink
    Definition Classes
    Decoders
  37. implicit val intEncoder: Encoder[Int]

    Permalink
    Definition Classes
    Encoders
  38. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  39. def lift[T](v: T): T

    Permalink
    Definition Classes
    QuotationDsl
    Annotations
    @compileTimeOnly( ... )
  40. implicit val longDecoder: Decoder[Long]

    Permalink
    Definition Classes
    Decoders
  41. implicit val longEncoder: Encoder[Long]

    Permalink
    Definition Classes
    Encoders
  42. implicit def mappedDecoder[I, O](implicit mapped: MappedEncoding[I, O], decoder: Decoder[I]): Decoder[O]

    Permalink
    Definition Classes
    Context
  43. implicit def mappedEncoder[I, O](implicit mapped: MappedEncoding[I, O], encoder: Encoder[O]): Encoder[I]

    Permalink
    Definition Classes
    Context
  44. def mappedEncoding[I, O](f: (I) ⇒ O): MappedEncoding[I, O]

    Permalink
    Definition Classes
    Context
  45. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  46. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  47. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  48. implicit def optionDecoder[T](implicit d: Decoder[T]): Decoder[Option[T]]

    Permalink
    Definition Classes
    Decoders
  49. implicit def optionEncoder[T](implicit d: Encoder[T]): Encoder[Option[T]]

    Permalink
    Definition Classes
    Encoders
  50. def probe(sql: String): Try[com.github.mauricio.async.db.QueryResult]

    Permalink
    Definition Classes
    AsyncContext → SqlContext
  51. def query[T](implicit ct: ClassTag[T]): EntityQuery[T]

    Permalink
    Definition Classes
    QueryDsl
    Annotations
    @compileTimeOnly( ... )
  52. implicit macro def quote[T](body: T): Quoted[T]

    Permalink
    Definition Classes
    QuotationDsl
  53. macro def quote[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R](func: (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  54. macro def quote[T1, T2, T3, T4, T5, T6, T7, T8, T9, R](func: (T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  55. macro def quote[T1, T2, T3, T4, T5, T6, T7, T8, R](func: (T1, T2, T3, T4, T5, T6, T7, T8) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5, T6, T7, T8) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  56. macro def quote[T1, T2, T3, T4, T5, T6, T7, R](func: (T1, T2, T3, T4, T5, T6, T7) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5, T6, T7) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  57. macro def quote[T1, T2, T3, T4, T5, T6, R](func: (T1, T2, T3, T4, T5, T6) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5, T6) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  58. macro def quote[T1, T2, T3, T4, T5, R](func: (T1, T2, T3, T4, T5) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4, T5) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  59. macro def quote[T1, T2, T3, T4, R](func: (T1, T2, T3, T4) ⇒ Quoted[R]): Quoted[(T1, T2, T3, T4) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  60. macro def quote[T1, T2, T3, R](func: (T1, T2, T3) ⇒ Quoted[R]): Quoted[(T1, T2, T3) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  61. macro def quote[T1, T2, R](func: (T1, T2) ⇒ Quoted[R]): Quoted[(T1, T2) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  62. macro def quote[T1, R](func: (T1) ⇒ Quoted[R]): Quoted[(T1) ⇒ R]

    Permalink
    Definition Classes
    QuotationDsl
  63. macro def quote[T](body: Quoted[T]): Quoted[T]

    Permalink
    Definition Classes
    QuotationDsl
  64. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) ⇒ T]): (P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  65. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9) ⇒ T]): (P1, P2, P3, P4, P5, P6, P7, P8, P9) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  66. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8) ⇒ T]): (P1, P2, P3, P4, P5, P6, P7, P8) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  67. macro def run[P1, P2, P3, P4, P5, P6, P7, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7) ⇒ T]): (P1, P2, P3, P4, P5, P6, P7) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  68. macro def run[P1, P2, P3, P4, P5, P6, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6) ⇒ T]): (P1, P2, P3, P4, P5, P6) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  69. macro def run[P1, P2, P3, P4, P5, T](quoted: Quoted[(P1, P2, P3, P4, P5) ⇒ T]): (P1, P2, P3, P4, P5) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  70. macro def run[P1, P2, P3, P4, T](quoted: Quoted[(P1, P2, P3, P4) ⇒ T]): (P1, P2, P3, P4) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  71. macro def run[P1, P2, P3, T](quoted: Quoted[(P1, P2, P3) ⇒ T]): (P1, P2, P3) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  72. macro def run[P1, P2, T](quoted: Quoted[(P1, P2) ⇒ T]): (P1, P2) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  73. macro def run[P1, T](quoted: Quoted[(P1) ⇒ T]): (P1) ⇒ SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  74. macro def run[T](quoted: Quoted[T]): SingleQueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  75. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  76. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5, P6, P7, P8, P9)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  77. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5, P6, P7, P8)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  78. macro def run[P1, P2, P3, P4, P5, P6, P7, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5, P6, P7)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  79. macro def run[P1, P2, P3, P4, P5, P6, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5, P6)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  80. macro def run[P1, P2, P3, P4, P5, T](quoted: Quoted[(P1, P2, P3, P4, P5) ⇒ Action[T]]): (List[(P1, P2, P3, P4, P5)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  81. macro def run[P1, P2, P3, P4, T](quoted: Quoted[(P1, P2, P3, P4) ⇒ Action[T]]): (List[(P1, P2, P3, P4)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  82. macro def run[P1, P2, P3, T](quoted: Quoted[(P1, P2, P3) ⇒ Action[T]]): (List[(P1, P2, P3)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  83. macro def run[P1, P2, T](quoted: Quoted[(P1, P2) ⇒ Action[T]]): (List[(P1, P2)]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  84. macro def run[P1, T](quoted: Quoted[(P1) ⇒ Action[T]]): (List[P1]) ⇒ BatchedActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  85. macro def run[T](quoted: Quoted[Action[T]]): ActionResult[T]

    Permalink
    Definition Classes
    SqlContext
  86. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) ⇒ Query[T]]): (P1, P2, P3, P4, P5, P6, P7, P8, P9, P10) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  87. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, P9, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8, P9) ⇒ Query[T]]): (P1, P2, P3, P4, P5, P6, P7, P8, P9) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  88. macro def run[P1, P2, P3, P4, P5, P6, P7, P8, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7, P8) ⇒ Query[T]]): (P1, P2, P3, P4, P5, P6, P7, P8) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  89. macro def run[P1, P2, P3, P4, P5, P6, P7, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6, P7) ⇒ Query[T]]): (P1, P2, P3, P4, P5, P6, P7) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  90. macro def run[P1, P2, P3, P4, P5, P6, T](quoted: Quoted[(P1, P2, P3, P4, P5, P6) ⇒ Query[T]]): (P1, P2, P3, P4, P5, P6) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  91. macro def run[P1, P2, P3, P4, P5, T](quoted: Quoted[(P1, P2, P3, P4, P5) ⇒ Query[T]]): (P1, P2, P3, P4, P5) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  92. macro def run[P1, P2, P3, P4, T](quoted: Quoted[(P1, P2, P3, P4) ⇒ Query[T]]): (P1, P2, P3, P4) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  93. macro def run[P1, P2, P3, T](quoted: Quoted[(P1, P2, P3) ⇒ Query[T]]): (P1, P2, P3) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  94. macro def run[P1, P2, T](quoted: Quoted[(P1, P2) ⇒ Query[T]]): (P1, P2) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  95. macro def run[P1, T](quoted: Quoted[(P1) ⇒ Query[T]]): (P1) ⇒ QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  96. macro def run[T](quoted: Quoted[Query[T]]): QueryResult[T]

    Permalink
    Definition Classes
    SqlContext
  97. implicit val shortDecoder: Decoder[Short]

    Permalink
    Definition Classes
    Decoders
  98. implicit val shortEncoder: Encoder[Short]

    Permalink
    Definition Classes
    Encoders
  99. implicit val stringDecoder: Decoder[String]

    Permalink
    Definition Classes
    Decoders
  100. implicit val stringEncoder: Encoder[String]

    Permalink
    Definition Classes
    Encoders
  101. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  102. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  103. def transaction[T](f: (TransactionalExecutionContext) ⇒ Future[T])(implicit ec: ExecutionContext): Future[T]

    Permalink
  104. implicit def traversableEncoder[T](implicit e: Encoder[T]): Encoder[Traversable[T]]

    Permalink
    Definition Classes
    Encoders
  105. implicit def unquote[T](quoted: Quoted[T]): T

    Permalink
    Definition Classes
    QuotationDsl
    Annotations
    @compileTimeOnly( ... )
  106. implicit val uuidDecoder: Decoder[UUID]

    Permalink
    Definition Classes
    Decoders
  107. implicit val uuidEncoder: Encoder[UUID]

    Permalink
    Definition Classes
    Encoders
  108. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  109. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  110. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  111. implicit def wrappedTypeDecoder[T <: WrappedType]: MappedEncoding[T, Context.wrappedTypeDecoder.T.Type]

    Permalink
    Definition Classes
    Context

Inherited from Encoders

Inherited from Decoders

Inherited from SqlContext[D, N, RowData, BindedStatementBuilder[List[Any]]]

Inherited from SqlDsl

Inherited from Context[RowData, BindedStatementBuilder[List[Any]]]

Inherited from CoreDsl

Inherited from QuotationDsl

Inherited from QueryDsl

Inherited from OrdDsl

Inherited from InfixDsl

Inherited from Closeable

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped