Till KTH:s startsida Till KTH:s startsida

Ändringar mellan två versioner

Här visas ändringar i "Concurrency" mellan 2018-02-13 17:54 av Johan Montelius och 2020-01-19 17:08 av Johan Montelius.

Visa < föregående ändring.

Concurrency

Concurrency is of course a whole different animal. It has nothing to do with functional programming but since Erlang is a functional programming language that supports concurrency we can continue with Elixir. Different language have different ways of handling concurrency and especially how concurrent processes communicate. Elixir implements a model called actors model where processes communicate by messages, this model is also found in Scala and Go.


* concurrency.pdf
After the lecture Take a look at the exercises related to concurrency.¶

Elixir concepts
* Elixir: Processes