Attributes
- Companion:
- trait
- Source:
- DBIOAction.scala
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
- Self type
- DBIOAction.type
Members list
Value members
Concrete methods
Create a DBIOAction that always fails.
Create a DBIOAction that runs some other actions in sequence and combines their results with the given function.
Create a DBIOAction that runs some other actions in sequence and combines their results with the given function.
Attributes
- Source:
- DBIOAction.scala
Convert a Future to a DBIOAction.
A simpler version of sequence that takes a number of DBIOActions with any return type as
varargs and returns a DBIOAction that performs the individual actions in sequence, returning
() in the end.
A simpler version of sequence that takes a number of DBIOActions with any return type as
varargs and returns a DBIOAction that performs the individual actions in sequence, returning
() in the end.
Attributes
- Source:
- DBIOAction.scala
Transform a TraversableOnce[ DBIO[R] ] into a DBIO[ TraversableOnce[R] ].
Transform a TraversableOnce[ DBIO[R] ] into a DBIO[ TraversableOnce[R] ].
Attributes
- Source:
- DBIOAction.scala
Transform a Option[ DBIO[R] ] into a DBIO[ Option[R] ].
Lift a constant value to a DBIOAction.