trait ShowInspect[Tpl] extends AnyRef
Inspect methods
Call a inspect method on a molecule to see the internal transformations and produced transaction statements or sample data.
- Self Type
- Molecule[Tpl]
- Source
- ShowInspect.scala
- Grouped
- Alphabetic
- By Inheritance
- ShowInspect
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
_inspectInsert(conn: Conn, dataRows: Iterable[Seq[Any]]): Unit
- Attributes
- protected
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
inspectGet(implicit conn: Conn): Unit
Inspect call to
geton a molecule (without affecting the db).Inspect call to
geton a molecule (without affecting the db).
Prints the following to output:
1. Internal molecule transformation representations:
Molecule DSL --> Model --> Query --> Datomic query
2. Data returned from get query (max 500 rows). OBS: printing raw Date's (Clojure Instant) will miss the time-zone- conn
Implicit Conn value in scope
-
def
inspectGetAsOf(date: Date)(implicit conn: Conn): Unit
Inspect call to
getAsOf(date)on a molecule (without affecting the db).Inspect call to
getAsOf(date)on a molecule (without affecting the db).
Prints the following to output:
1. Internal molecule transformation representations:
Molecule DSL --> Model --> Query --> Datomic query
2. Data returned from get query (max 500 rows).- conn
Implicit Conn value in scsope
-
def
inspectGetAsOf(tx: TxReport)(implicit conn: Conn): Unit
Inspect call to
getAsOf(tx)on a molecule (without affecting the db). -
def
inspectGetAsOf(t: Long)(implicit conn: Conn): Unit
Inspect call to
getAsOf(t)on a molecule (without affecting the db).Inspect call to
getAsOf(t)on a molecule (without affecting the db).
Prints the following to output:
1. Internal molecule transformation representations:
Molecule DSL --> Model --> Query --> Datomic query
2. Data returned from get query (max 500 rows).- conn
Implicit Conn value in scope
-
def
inspectGetHistory(implicit conn: Conn): Unit
Inspect call to
getHistoryon a molecule (without affecting the db).Inspect call to
getHistoryon a molecule (without affecting the db).
Prints the following to output:
1. Internal molecule transformation representations:
Molecule DSL --> Model --> Query --> Datomic query
2. Data returned from get query (max 500 rows).- conn
Implicit Conn value in scope
-
def
inspectGetSince(date: Date)(implicit conn: Conn): Unit
Inspect call to
getSince(date)on a molecule (without affecting the db).Inspect call to
getSince(date)on a molecule (without affecting the db).
Prints the following to output:
1. Internal molecule transformation representations:
Molecule DSL --> Model --> Query --> Datomic query
2. Data returned from get query (max 500 rows).- conn
Implicit Conn value in scope
-
def
inspectGetSince(tx: TxReport)(implicit conn: Conn): Unit
Inspect call to
getSince(tx)on a molecule (without affecting the db). -
def
inspectGetSince(t: Long)(implicit conn: Conn): Unit
Inspect call to
getSince(t)on a molecule (without affecting the db).Inspect call to
getSince(t)on a molecule (without affecting the db).
Prints the following to output:
1. Internal molecule transformation representations:
Molecule DSL --> Model --> Query --> Datomic query
2. Data returned from get query (max 500 rows).- conn
Implicit Conn value in scope
-
def
inspectGetWith(txData: List[List[_]])(implicit conn: Conn): Unit
Inspect call to
getWith(txData)on a molecule (without affecting the db).Inspect call to
getWith(txData)on a molecule (without affecting the db).
Prints the following to output:
1. Internal molecule transformation representations:
Molecule DSL --> Model --> Query --> Datomic query
2. Data returned from get query (max 500 rows).
3. Transactions of applied transaction data.- txData
Raw transaction data as java.util.List[Object]
- conn
Implicit Conn value in scope
-
def
inspectGetWith(txMolecules: Seq[Seq[Statement]]*)(implicit conn: Conn): Unit
Inspect call to
getWith(txMolecules)on a molecule (without affecting the db).Inspect call to
getWith(txMolecules)on a molecule (without affecting the db).
Prints the following to output:
1. Internal molecule transformation representations:
Molecule DSL --> Model --> Query --> Datomic query
2. Data returned from get query (max 500 rows).
3. Transactions of applied transaction molecules.- txMolecules
Transaction statements from applied Molecules with test data
- conn
Implicit Conn value in scope
-
def
inspectSave(implicit conn: Conn): Unit
Inspect call to
saveon a molecule (without affecting the db).Inspect call to
saveon a molecule (without affecting the db).
Prints internal molecule transformation representations to output:
Model --> Generic statements --> Datomic statements- conn
Implicit Conn value in scope
- returns
Unit
-
def
inspectUpdate(implicit conn: Conn): Unit
Inspect call to
updateon a molecule (without affecting the db).Inspect call to
updateon a molecule (without affecting the db).
Prints internal molecule transformation representations to output:
Model --> Generic statements --> Datomic statements- conn
Implicit Conn value in scope
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()

Documentation/API for the Molecule library - a meta DSL for the Datomic database.
scalamolecule.org | Github | Forum