Till KTH:s startsida Till KTH:s startsida

Ändringar mellan två versioner

Här visas ändringar i "Concurrency" mellan 2016-02-03 14:29 av Johan Montelius och 2017-11-08 13:09 av Johan Montelius.

Visa < föregående | nästa > ä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 Erlanglixir. Different language have different ways of handling concurrency and especially how concurrent processes communicate. Erlanglixir implements a model called actors model where processes communicate by messages, this model is also found in Scala and Go.


* concurrency.pdf
* processes.pdf
Before this lecture You will find a very good introduction to Erlang processes in the online material. Take a look at the section:¶
* Creating Processes and Message Passing
Elixir concepts
* Elixir: Processes