object out13 extends api with Molecule_Factory13 with CompositeFactory_0_5
- Grouped
- Alphabetic
- By Inheritance
- out13
- CompositeFactory_0_5
- Molecule_Factory13
- api
- GenericVAET
- GenericEAVT
- GenericAVET
- GenericAEVT
- GenericLog
- GenericSchema
- TxFunctions
- TxBundles
- EntityOps
- LogicImplicits
- Keywords
- AttrExpressions
- AggregateKeywords
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
trait
avg extends AnyRef
Average of attribute values.
Average of attribute values.
Applyavgkeyword to attribute to return average of attribute values of entities matching the molecule.Match.sKeywords.insert(1, 2, 4) Match.score(avg).get.head === 2.3333333333333335 // (1 + 2 + 4) / 3
- returns
Double
- Definition Classes
- AggregateKeywords
-
trait
count extends AnyRef
Count of attribute values.
Count of attribute values.
Applycountkeyword to attribute to return count of attribute values of entities matching the molecule.Person.firstName.lastName.age insert List( ("Ben", "Hayday", 42), ("Liz", "Taylor", 34), ("Liz", "Swifty", 34), ("Liz", "Mooray", 25) ) Person.firstName.age(count).get === List( ("Ben", 1), ("Liz", 3) // 34, 34, 25 )
- returns
Int
- Definition Classes
- AggregateKeywords
-
trait
countDistinct extends AnyRef
Count of distinct attribute values.
Count of distinct attribute values.
ApplycountDistinctkeyword to attribute to return count of distinct attribute values of entities matching the molecule.Person.firstName.lastName.age insert List( ("Ben", "Hayday", 42), ("Liz", "Taylor", 34), ("Liz", "Swifty", 34), ("Liz", "Mooray", 25) ) Person.firstName.age(countDistinct).get === List( ("Ben", 1), ("Liz", 2) // 34, 25 )
- returns
Int
- Definition Classes
- AggregateKeywords
-
trait
distinct extends AnyRef
Distinct attribute values.
Distinct attribute values.
Applydistinctkeyword to attribute to return Vector of distinct attribute values of entities matching the molecule.Person.firstName.lastName.age insert List( ("Ben", "Hayday", 42), ("Liz", "Taylor", 34), ("Liz", "Swifty", 34), ("Liz", "Mooray", 25) ) Person.firstName.age(distinct) insert List( ("Ben", 42), ("Liz", Vector(34, 25)) // only single 34 returned )
- returns
List[attribute-type]
- Definition Classes
- AggregateKeywords
-
trait
max extends AnyRef
Maximum attribute value(s).
Maximum attribute value(s).
Applymaxkeyword to attribute to return the maximum attribute value of entities matching the molecule.Person.age.insert(25, 34, 37, 42, 70) Person.age(max).get.head === 70
Apply
max(n)to return Vector of the n biggest values.Person.age(max(3)).get.head === Vector(37, 42, 70)
- Definition Classes
- AggregateKeywords
- Note
max/max(n)supports all value types (via comparators).max(n)Can at most return the number of values that match.
-
trait
maxs extends AnyRef
- Definition Classes
- AggregateKeywords
-
trait
median extends AnyRef
Median of attribute values.
Median of attribute values.
Applymediankeyword to attribute to return median of attribute values of entities matching the molecule.Match.sKeywords.insert(1, 2, 4) Match.score(median).get.head === 2
OBS: When it comes to an even number of values, Datomic has a special implementation of median that is different from the one described on the Wiki entry on the median function.
Datomic calculates the median of even number of values as the average of the two middle numbers rounded down to nearest whole numberMatch.sKeywords.insert(1, 2, 3, 4) Match.score(median).get.head === 2 // (2 + 3) / 2 = 2.5 rounded down to 2
With decimal numbers this can go wrong:
Match.sKeywords.insert(1.0, 2.5, 2.5, 3.0) Match.score(median).get.head === 2 // (2.5 + 2.5) / 2 = 2.5 rounded down to 2 (This is wrong and bug report has been filed)
- returns
Value of Attribute type
- Definition Classes
- AggregateKeywords
-
trait
min extends AnyRef
Minimum attribute value(s).
Minimum attribute value(s).
Applyminkeyword to attribute to return the minimum attribute value of entities matching the molecule.Person.age.insert(25, 34, 37, 42, 70) Person.age(min).get.head === 25
Apply
min(n)to return Vector of the n smallest values.Person.age(min(3)).get.head === Vector(25, 34, 37)
- Definition Classes
- AggregateKeywords
- Note
min/min(n)supports all value types (via comparators).min(n)Can at most return the number of values that match.
-
trait
mins extends AnyRef
- Definition Classes
- AggregateKeywords
-
trait
rand extends AnyRef
Random attribute value(s).
Random attribute value(s).
Applyrandomkeyword to attribute to return a single random attribute of entities matching the molecule.Person.age.insert(25, 34, 37, 42, 70) Person.age(random).get.head === 34 // or other..
Apply
random(n)to return Vector of n random values. Observe though that duplicate random values can re-occur.Person.age(random(3)).get.head === Vector(42, 25, 42) // or other..
To get distinct values only, use the
sample(n)keyword instead.- Definition Classes
- AggregateKeywords
-
trait
rands extends AnyRef
- Definition Classes
- AggregateKeywords
-
trait
sample extends AnyRef
Sample attribute value(s).
Sample attribute value(s).
Applysamplekeyword to attribute to return a single sample (random) attribute value of entities matching the molecule.Person.age.insert(25, 34, 37, 42, 70) Person.age(sample).get.head === 42 // or other..
Apply
sample(n)to return Vector of up to n distinct sample values.Person.age(sample(3)).get.head === Vector(70, 25, 37) // or other..
If values don't need to be distinct,
random(n)can be used also.- Definition Classes
- AggregateKeywords
- Note
Can at most return the number of values that match.
-
trait
samples extends AnyRef
- Definition Classes
- AggregateKeywords
-
trait
stddev extends AnyRef
Variance of attribute values.
Variance of attribute values.
Applystddevkeyword to attribute to return variance of attribute values of entities matching the molecule.Match.sKeywords.insert(1, 2, 4) Match.score(stddev).get.head === 1.247219128924647
- returns
Double
- Definition Classes
- AggregateKeywords
-
trait
sum extends AnyRef
Sum of attribute values.
Sum of attribute values.
Applysumkeyword to attribute to return sum of attribute values of entities matching the molecule.Match.sKeywords.insert(1, 2, 4) Match.score(sum).get.head === 7
- returns
Value of Attribute type
- Definition Classes
- AggregateKeywords
-
trait
variance extends AnyRef
Variance of attribute values.
Variance of attribute values.
Applyvariancekeyword to attribute to return variance of attribute values of entities matching the molecule.Match.sKeywords.insert(1, 2, 4) Match.score(variance).get.head === 1.5555555555555556
- returns
Double
- Definition Classes
- AggregateKeywords
-
trait
? extends AnyRef
Turn molecule into input molecule awaiting input.
Turn molecule into input molecule awaiting input.
Apply input marker?to attribute to turn molecule into an 'input molecule'.
At runtime the input molecule expects input for the attribute in place of the?marker.// Input molecule created at compile time. val ageOfPersons = m(Person.name_(?).age) // awaiting name of type String // At runtime, "Ben" is applied as input replacing the `?` placeholder and we can get the age. ageOfPersons("Ben").get === List(42)
- Definition Classes
- AttrExpressions
- Note
Data can only be retrieved from input molecules once they have been resolved with input.
Input molecule queries are cached and optimized by Datomic.
-
trait
AttrExpr[Ns, T] extends AnyRef
Expression methods common for all attributes.
Expression methods common for all attributes.
- Definition Classes
- AttrExpressions
-
trait
FulltextExpr[Ns, In] extends AnyRef
Expression methods of String attributes with fulltext search.
Expression methods of String attributes with fulltext search.
- Definition Classes
- AttrExpressions
-
trait
ManyAttrExpr[Ns, Add, OldNew, Rem] extends AnyRef
Value update methods for card-many attributes.
Value update methods for card-many attributes.
- Definition Classes
- AttrExpressions
-
trait
ManyExpr[Ns, In, T] extends ValueAttrExpr[Ns, In, T] with ManyAttrExpr[Ns, T, (T, T), T]
Expression methods of card-many attributes.
Expression methods of card-many attributes.
- Definition Classes
- AttrExpressions
-
trait
MapAttrExpr[Ns, In, T] extends ValueAttrExpr[Ns, In, T] with ManyAttrExpr[Ns, (String, T), (String, T), String]
Expression methods of map attributes.
Expression methods of map attributes.
- Definition Classes
- AttrExpressions
-
trait
OneExpr[Ns, In, T] extends ValueAttrExpr[Ns, In, T]
Expression methods of card-one attributes.
Expression methods of card-one attributes.
- Definition Classes
- AttrExpressions
-
trait
OptionalExpr[Ns, T] extends AnyRef
Expression methods of optional attributes.
Expression methods of optional attributes.
- Definition Classes
- AttrExpressions
-
trait
ValueAttrExpr[Ns, In, T] extends AttrExpr[Ns, T]
Expression methods of value attributes.
Expression methods of value attributes.
- Definition Classes
- AttrExpressions
-
trait
unify extends AnyRef
Unify attribute value in self-join.
Unify attribute value in self-join.
Applyunifymarker to attribute to unify its value with previous values of the same attribute in the molecule in a self-join.m(Person.age.name.Beverages * Beverage.name.rating) insert List( (23, "Joe", List(("Coffee", 3), ("Cola", 2), ("Pepsi", 3))), (25, "Ben", List(("Coffee", 2), ("Tea", 3))), (23, "Liz", List(("Coffee", 1), ("Tea", 3), ("Pepsi", 1)))) // What beverages do pairs of 23- AND 25-year-olds like in common? // Drink name is unified - Joe and Ben both drink coffee, etc.. Person.age_(23).name.Beverages.name._Ns.Self .age_(25).name.Beverages.name_(unify).get.sorted === List( ("Joe", "Coffee", "Ben"), ("Liz", "Coffee", "Ben"), ("Liz", "Tea", "Ben") )
- Definition Classes
- AttrExpressions
-
type
?? = core.expression.AttrExpressions.?
- Definition Classes
- AttrExpressions
-
type
unify_stable = core.expression.AttrExpressions.unify
- Definition Classes
- AttrExpressions
Value Members
-
object
AEVT extends AEVT_0_0_L0[AEVT_, Init] with FirstNS
AEVT Index object to start AEVT Index molecule.
AEVT Index object to start AEVT Index molecule.
- Definition Classes
- GenericAEVT
-
object
AVET extends AVET_0_0_L0[AVET_, Init] with FirstNS
AVET Index object to start AVET Index molecule.
AVET Index object to start AVET Index molecule.
- Definition Classes
- GenericAVET
-
object
EAVT extends EAVT_0_0_L0[EAVT_, Init] with FirstNS
EAVT Index object to instantiate EAVT Index molecule.
EAVT Index object to instantiate EAVT Index molecule.
- Definition Classes
- GenericEAVT
-
object
Log extends Log_0_0_L0[Log_, Init] with FirstNS
Log object to start Log molecule.
Log object to start Log molecule.
- Definition Classes
- GenericLog
-
object
Schema extends Schema_0_0_L0[Schema_, Init] with FirstNS
Schema object to start Schema molecule.
Schema object to start Schema molecule.
- Definition Classes
- GenericSchema
-
object
VAET extends VAET_0_0_L0[VAET_, Init] with FirstNS
VAET Index object to start VAET reverse Index molecule.
VAET Index object to start VAET reverse Index molecule.
- Definition Classes
- GenericVAET
-
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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
implicit final
def
bigDec2Model(v: BigDecimal): TermValue[BigDecimal]
- Definition Classes
- LogicImplicits
-
implicit final
def
bigDecSet2Model(set: Set[BigDecimal]): TermValue[Set[BigDecimal]]
- Definition Classes
- LogicImplicits
-
implicit final
def
bigInt2Model(v: BigInt): TermValue[BigInt]
- Definition Classes
- LogicImplicits
-
implicit final
def
bigIntSet2Model(set: Set[BigInt]): TermValue[Set[BigInt]]
- Definition Classes
- LogicImplicits
-
implicit final
def
boolean2Model(v: Boolean): TermValue[Boolean]
- Definition Classes
- LogicImplicits
-
implicit final
def
booleanSet2Model(set: Set[Boolean]): TermValue[Set[Boolean]]
- Definition Classes
- LogicImplicits
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
implicit final
def
date2Model(v: Date): TermValue[Date]
- Definition Classes
- LogicImplicits
-
implicit final
def
dateSet2Model(set: Set[Date]): TermValue[Set[Date]]
- Definition Classes
- LogicImplicits
-
implicit final
def
double2Model(v: Double): TermValue[Double]
- Definition Classes
- LogicImplicits
-
implicit final
def
doubleSet2Model(set: Set[Double]): TermValue[Set[Double]]
- Definition Classes
- LogicImplicits
-
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] )
-
implicit final
def
float2Model(v: Float): TermValue[Float]
- Definition Classes
- LogicImplicits
-
implicit final
def
floatSet2Model(set: Set[Float]): TermValue[Set[Float]]
- Definition Classes
- LogicImplicits
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
inspectRetract(eids: Iterable[Long], txMetaDataMolecules: Molecule*)(implicit conn: Conn): Unit
Inspect retracting multiple entities with optional transaction meta data.
Inspect retracting multiple entities with optional transaction meta data.
Without affecting the database, a multiple entity retract action can be inspected by calling theinspectRetractmethod.
Here we inspect a possible retraction of two comment entities with transaction meta data asserting that the retraction was done by Ben Goodman:inspectRetract(Seq(commentEid1, commentEid2), MetaData.user("Ben Goodman"))
This will print inspecting info about the retraction to output (without affecting the database):
## 1 ## molecule.Datomic.inspectRetract =================================================================================================================== 1 Model( 1 TxMetaData( 1 Atom(metaData,user,String,1,Eq(List(Ben Goodman)),None,List(),List()))) ------------------------------------------------ 2 List( 1 :db/add 'tx :MetaData/user Values(Eq(List(Ben Goodman)),None) Card(1)) ------------------------------------------------ 3 List( 1 List( 1 :db/retractEntity 17592186045445 2 :db/retractEntity 17592186045446 3 :db/add #db/id[:db.part/tx -1000097] :MetaData/user b Card(1))) ===================================================================================================================
- eids
Iterable of entity ids of type Long
- txMetaDataMolecules
Zero or more transaction meta data molecules
- conn
Implicit Conn value in scope
- returns
Unit (prints to output)
- Definition Classes
- EntityOps
-
def
inspectTransactBundle(stmtss: Seq[Seq[Statement]]*)(implicit conn: Conn): Unit
Inspect transaction bundle statements
Add transaction statements from one or more molecule actions toinspectTransactto see the bundled transaction statements.Inspect transaction bundle statements
Add transaction statements from one or more molecule actions toinspectTransactto see the bundled transaction statements.inspectTransact( // retract e1.getRetractTx, // save Ns.int(4).getSaveTx, // insert Ns.int.getInsertTx(List(5, 6)), // update Ns(e2).int(20).getUpdateTx ) // Prints transaction data to output: /* ## 1 ## TxReport ======================================================================== 1 ArrayBuffer( 1 List( 1 :db/retractEntity 17592186045445) 2 List( 1 :db/add #db/id[:db.part/user -1000247] :Ns/int 4 Card(1)) 3 List( 1 :db/add #db/id[:db.part/user -1000252] :Ns/int 5 Card(1)) 4 List( 1 :db/add #db/id[:db.part/user -1000253] :Ns/int 6 Card(1)) 5 List( 1 :db/add 17592186045446 :Ns/int 20 Card(1))) ------------------------------------------------ 2 List( 1 1 added: true , t: 13194139534345, e: 13194139534345, a: 50, v: Wed Nov 14 23:38:15 CET 2018 2 2 added: false, -t: 13194139534345, -e: 17592186045445, -a: 64, -v: 1 3 3 added: true , t: 13194139534345, e: 17592186045450, a: 64, v: 4 4 4 added: true , t: 13194139534345, e: 17592186045451, a: 64, v: 5 5 5 added: true , t: 13194139534345, e: 17592186045452, a: 64, v: 6 6 6 added: true , t: 13194139534345, e: 17592186045446, a: 64, v: 20 7 added: false, -t: 13194139534345, -e: 17592186045446, -a: 64, -v: 2) ======================================================================== */
- Definition Classes
- TxBundles
-
macro
def
inspectTransactFn(txFnCall: Seq[Seq[Statement]], txMolecules: Molecule*): Unit
Inspect tx function invocation
Print transaction statements to output of a tx function invocation without affecting the live database.Inspect tx function invocation
Print transaction statements to output of a tx function invocation without affecting the live database.// Print inspect info for tx function invocation inspectTransact(transfer(fromAccount, toAccount, 20)) // Prints produced tx statements to output: /* ## 1 ## TxReport ======================================================================== 1 ArrayBuffer( 1 List( 1 :db/add 17592186045445 :Account/balance 80 Card(1)) 2 List( 1 :db/add 17592186045447 :Account/balance 720 Card(1))) ------------------------------------------------ 2 List( 1 1 added: true , t: 13194139534345, e: 13194139534345, a: 50, v: Thu Nov 22 16:23:09 CET 2018 2 2 added: true , t: 13194139534345, e: 17592186045445, a: 64, v: 80 3 added: false, -t: 13194139534345, -e: 17592186045445, -a: 64, -v: 100 3 4 added: true , t: 13194139534345, e: 17592186045447, a: 64, v: 720 5 added: false, -t: 13194139534345, -e: 17592186045447, -a: 64, -v: 700) ======================================================================== */
- txFnCall
Tx function invocation
- txMolecules
Optional tx meta data molecules
- Definition Classes
- TxFunctions
-
implicit final
def
int2Model(v: Int): TermValue[Int]
- Definition Classes
- LogicImplicits
-
implicit final
def
intSet2Model(set: Set[Int]): TermValue[Set[Int]]
- Definition Classes
- LogicImplicits
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
implicit final
def
long2Entity(id: Long)(implicit conn: Conn): DatomicEntity
Long -> Entity api implicit.
Long -> Entity api implicit.
Convenience implicit to allow calling Entity methods directly on entity Long value.// Get entity id of Ben val benId = Person.e.name_("Ben").get.head // Retract Ben entity directly on his entity id benId.retract
- id
Entity id of type Long
- conn
Implicit Conn value in scope
- Definition Classes
- EntityOps
-
implicit final
def
long2Model(v: Long): TermValue[Long]
- Definition Classes
- LogicImplicits
-
implicit final
def
longSet2Model(set: Set[Long]): TermValue[Set[Long]]
- Definition Classes
- LogicImplicits
-
implicit final macro
def
m[obj[_], props, T1, T2, T3, T4, T5](dsl: Composite_0_05[obj, props, T1, T2, T3, T4, T5]): Molecule_0_05[props, T1, T2, T3, T4, T5]
- Definition Classes
- CompositeFactory_0_5
-
implicit final macro
def
m[obj[_], props, T1, T2, T3, T4](dsl: Composite_0_04[obj, props, T1, T2, T3, T4]): Molecule_0_04[props, T1, T2, T3, T4]
- Definition Classes
- CompositeFactory_0_5
-
implicit final macro
def
m[obj[_], props, T1, T2, T3](dsl: Composite_0_03[obj, props, T1, T2, T3]): Molecule_0_03[props, T1, T2, T3]
- Definition Classes
- CompositeFactory_0_5
-
implicit final macro
def
m[obj[_], props, T1, T2](dsl: Composite_0_02[obj, props, T1, T2]): Molecule_0_02[props, T1, T2]
- Definition Classes
- CompositeFactory_0_5
-
implicit final macro
def
m[obj[_], props, T1](dsl: Composite_0_01[obj, props, T1]): Molecule_0_01[props, T1]
- Definition Classes
- CompositeFactory_0_5
-
implicit final macro
def
m[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M](dsl: NS_0_13[obj, props, A, B, C, D, E, F, G, H, I, J, K, L, M]): Molecule_0_13[props, A, B, C, D, E, F, G, H, I, J, K, L, M]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L](dsl: NS_0_12[obj, props, A, B, C, D, E, F, G, H, I, J, K, L]): Molecule_0_12[props, A, B, C, D, E, F, G, H, I, J, K, L]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B, C, D, E, F, G, H, I, J, K](dsl: NS_0_11[obj, props, A, B, C, D, E, F, G, H, I, J, K]): Molecule_0_11[props, A, B, C, D, E, F, G, H, I, J, K]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B, C, D, E, F, G, H, I, J](dsl: NS_0_10[obj, props, A, B, C, D, E, F, G, H, I, J]): Molecule_0_10[props, A, B, C, D, E, F, G, H, I, J]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B, C, D, E, F, G, H, I](dsl: NS_0_09[obj, props, A, B, C, D, E, F, G, H, I]): Molecule_0_09[props, A, B, C, D, E, F, G, H, I]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B, C, D, E, F, G, H](dsl: NS_0_08[obj, props, A, B, C, D, E, F, G, H]): Molecule_0_08[props, A, B, C, D, E, F, G, H]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B, C, D, E, F, G](dsl: NS_0_07[obj, props, A, B, C, D, E, F, G]): Molecule_0_07[props, A, B, C, D, E, F, G]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B, C, D, E, F](dsl: NS_0_06[obj, props, A, B, C, D, E, F]): Molecule_0_06[props, A, B, C, D, E, F]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B, C, D, E](dsl: NS_0_05[obj, props, A, B, C, D, E]): Molecule_0_05[props, A, B, C, D, E]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B, C, D](dsl: NS_0_04[obj, props, A, B, C, D]): Molecule_0_04[props, A, B, C, D]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B, C](dsl: NS_0_03[obj, props, A, B, C]): Molecule_0_03[props, A, B, C]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A, B](dsl: NS_0_02[obj, props, A, B]): Molecule_0_02[props, A, B]
- Definition Classes
- Molecule_Factory13
-
implicit final macro
def
m[obj[_], props, A](dsl: NS_0_01[obj, props, A]): Molecule_0_01[props, A]
- Definition Classes
- Molecule_Factory13
-
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()
-
def
retract(eids: Iterable[Long], txMetaDataMolecules: Molecule*)(implicit conn: Conn): TxReport
Retract multiple entities with optional transaction meta data.
Retract multiple entities with optional transaction meta data.
0 or more transaction meta data molecules can be asserted together with a retraction of entities.
Here we retract two comment entities with transaction meta data asserting that the retraction was done by Ben Goodman:retract(Seq(commentEid1, commentEid2), MetaData.user("Ben Goodman"))
We can then later see what comments Ben Goodman retracted (
op_(false)):Comment.e.text.op_(false).Tx(MetaData.user_("Ben Goodman")).getHistory === List( (commentEid1, "I like this"), (commentEid2, "I hate this") )
- eids
Iterable of entity ids of type Long
- txMetaDataMolecules
Zero or more transaction meta data molecules
- conn
Implicit Conn value in scope
- returns
TxReport with result of retract
- Definition Classes
- EntityOps
-
def
retractAsync(eids: Iterable[Long], txMetaDataMolecules: Molecule*)(implicit conn: Conn, ec: ExecutionContext): Future[TxReport]
Asynchronously retract multiple entities with optional transaction meta data.
Asynchronously retract multiple entities with optional transaction meta data.
0 or more transaction meta data molecules can be asserted together with a retraction of entities.
Here we asynchronously retract two comment entities with transaction meta data asserting that the retraction was done by Ben Goodman:retractAsync(Seq(commentEid1, commentEid2), MetaData.user("Ben Goodman"))
We can then later see what comments Ben Goodman retracted (
op_(false)):Comment.e.text.op_(false).Tx(MetaData.user_("Ben Goodman")).getHistory === List( (commentEid1, "I like this"), (commentEid2, "I hate this") )
- eids
Iterable of entity ids of type Long
- txMetaDataMolecules
Zero or more transaction meta data molecules
- conn
Implicit Conn value in scope
- returns
TxReport with result of retract
- Definition Classes
- EntityOps
-
implicit final
def
string2Model(v: String): TermValue[String]
- Definition Classes
- LogicImplicits
-
implicit final
def
stringSet2Model(set: Set[String]): TermValue[Set[String]]
- Definition Classes
- LogicImplicits
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
transactBundle(stmtss: Seq[Seq[Statement]]*)(implicit conn: Conn): TxReport
Transact bundled transaction statements
Supply transaction statements of one or more molecule actions to perform a single atomic transaction.Transact bundled transaction statements
Supply transaction statements of one or more molecule actions to perform a single atomic transaction.transact( // retract entity e1.getRetractTx, // save new entity Ns.int(4).getSaveTx, // insert multiple new entities Ns.int.getInsertTx(List(5, 6)), // update entity Ns(e2).int(20).getUpdateTx )
- stmtss
Statement's from multiple molecule operations
- conn
Implicit Conn value in scope
- returns
TxReport with result of transaction
- Definition Classes
- TxBundles
-
def
transactBundleAsync(stmtss: Seq[Seq[Statement]]*)(implicit conn: Conn, ec: ExecutionContext): Future[TxReport]
Asynchronously transact bundled transaction statements
Asynchronously transact bundled transaction statements
Supply transaction statements of one or more molecule actions to asynchronously transact a single atomic transaction.
Await.result( transactAsync( e1.getRetractTx, Ns.int(4).getSaveTx, Ns.int.getInsertTx(List(5, 6)), Ns(e2).int(20).getUpdateTx ) map { bundleTx => Ns.int.getAsync map { queryResult => queryResult === List(3, 4, 5, 6, 20) } }, 2.seconds )- stmtss
Statement's from multiple molecule operations
- conn
Implicit Conn value in scope
- returns
Future with TxReport with result of transaction
- Definition Classes
- TxBundles
-
macro
def
transactFn(txFnCall: Seq[Seq[Statement]], txMolecules: Molecule*): TxReport
Transact tx function invocation
Macro that takes a tx function invocation itself as its argument.Transact tx function invocation
Macro that takes a tx function invocation itself as its argument. The tx function is analyzed by the macro and the necessary transaction preparations done at compile time.
At runtime, the returned statements from the tx function is transacted as one atomic transaction.val txReport = transact(transfer(fromAccount, toAccount, 20))
Transaction meta data molecules can be added
// Add tx meta data that John did the transfer and that it is a scheduled transfer transact( transfer(fromAccount, toAccount, 20), Person.name("John"), UseCase.name("Scheduled transfer")) // Query multiple Tx meta data molecules Account(fromAccount).balance .Tx(Person.name_("John")) .Tx(UseCase.name_("Scheduled transfer")).get.head === 80 Account(toAccount).balance .Tx(Person.name_("John")) .Tx(UseCase.name_("Scheduled transfer")).get.head === 720
- txFnCall
Tx function invocation
- txMolecules
Optional tx meta data molecules
- returns
TxReport with result of transaction
- Definition Classes
- TxFunctions
-
macro
def
transactFnAsync(txFnCall: Seq[Seq[Statement]], txMolecules: Molecule*): Future[TxReport]
Asynchronously transact tx function invocation
Macro that takes a tx function invocation itself as its argument.Asynchronously transact tx function invocation
Macro that takes a tx function invocation itself as its argument. The tx function is analyzed by the macro and the necessary transaction preparations done at compile time.
At runtime, the returned statements from the tx function is asynchronously transacted as one atomic transaction using Datomic's asynchronous API.Await.result( transactAsync(transfer(fromAccount, toAccount, 20)) map { txReport => Account(fromAccount).balance.get.head === 80 // (could be asynchronous too) Account(toAccount).balance.get.head === 720 }, 2.seconds )
Additional transaction meta data can be added
Await.result( transactAsync( transfer(fromAccount, toAccount, 20), Person.name("John"), UseCase.name("Scheduled transfer")) map { txReport => Account(fromAccount).balance .Tx(Person.name_("John")) .Tx(UseCase.name_("Scheduled transfer")) .get.head === 80 // (could be asynchronous too) }, 2.seconds )- txFnCall
Tx function invocation
- txMolecules
Optional tx meta data molecules
- returns
Future with TxReport with result of transaction
- Definition Classes
- TxFunctions
-
implicit final
def
tuple2Model[A, B](tpl: (A, B)): TermValue[(A, B)]
- Definition Classes
- LogicImplicits
-
implicit final
def
uri2Model(v: URI): TermValue[URI]
- Definition Classes
- LogicImplicits
-
implicit final
def
uriSet2Model(set: Set[URI]): TermValue[Set[URI]]
- Definition Classes
- LogicImplicits
-
implicit final
def
uuid2Model(v: UUID): TermValue[UUID]
- Definition Classes
- LogicImplicits
-
implicit final
def
uuidSet2Model(set: Set[UUID]): TermValue[Set[UUID]]
- Definition Classes
- LogicImplicits
-
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()
-
object
avg extends core.api.Keywords.avg
- Definition Classes
- Keywords
-
object
count extends core.api.Keywords.count
- Definition Classes
- Keywords
-
object
countDistinct extends core.api.Keywords.countDistinct
- Definition Classes
- Keywords
-
object
distinct extends core.api.Keywords.distinct
- Definition Classes
- Keywords
-
object
max extends core.api.Keywords.max
- Definition Classes
- Keywords
-
object
median extends core.api.Keywords.median
- Definition Classes
- Keywords
-
object
min extends core.api.Keywords.min
- Definition Classes
- Keywords
-
object
rand extends core.api.Keywords.rand
- Definition Classes
- Keywords
-
object
sample extends core.api.Keywords.sample
- Definition Classes
- Keywords
-
object
stddev extends core.api.Keywords.stddev
- Definition Classes
- Keywords
-
object
sum extends core.api.Keywords.sum
- Definition Classes
- Keywords
-
object
unify extends core.expression.AttrExpressions.unify
- Definition Classes
- Keywords
-
object
variance extends core.api.Keywords.variance
- Definition Classes
- Keywords
Inherited from CompositeFactory_0_5
Inherited from Molecule_Factory13
Inherited from api
Inherited from GenericVAET
Inherited from GenericEAVT
Inherited from GenericAVET
Inherited from GenericAEVT
Inherited from GenericLog
Inherited from GenericSchema
Inherited from TxFunctions
Inherited from TxBundles
Inherited from EntityOps
Inherited from LogicImplicits
Inherited from Keywords
Inherited from AttrExpressions
Inherited from AggregateKeywords
Inherited from AnyRef
Inherited from Any
Entity operations
Bundled transactions
Multiple molecule operations in one atomic transaction.
Transaction functions
Atomic transaction logic with access to tx database value.
Attribute markers
Markers applied to attributes that change the semantics of the attribute/molecule.
Expression implicits
Turns basic types into TermValue's that can be used in Expression
Aggregate keywords
Keywords applied to attributes that return aggregated value(s).
Number aggregation keywords
Keywords applied to number attributes that return aggregated value(s).

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