Haskell: TVar: orElse
Asked Answered
E

1

13

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?

Edomite answered 11/4, 2012 at 6:35 Comment(0)
D
12

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.)

Davita answered 11/4, 2012 at 7:28 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.