STM in Clojure and Actors
Learn about STM and actors in the Akka framework.
We'll cover the following...
STM in Clojure
STM results in a separation of State and Identity. For example, the stock price at a given time is
immutable. We must use a Transaction to modify anything.
We can include the Clojure jars and use them within Java. For example, in the following code, referenceToAmount
can only be modified ...