Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Haskell: TVar: orElse

Is the "else" part of orElse called when a transaction is retried due to another transaction writing to a TVar it had read, or only when retry is explicitly called?

like image 471
Clinton Avatar asked Apr 11 '12 06:04

Clinton


1 Answers

If you have

orElse a b

then b is only run if retry is called explicitly in a. Otherwise orElse would essentially become nondeterministic. (The rerunning of transactions that is done by the STM runtime is transparent and should not effect the outcome of any computation.)

like image 105
Peter Avatar answered Oct 18 '22 08:10

Peter