diff options
author | Eduardo Julian | 2017-07-01 15:49:53 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-07-01 15:49:53 -0400 |
commit | b0596d813c4c597a97be52fc67f2a7ff12478d66 (patch) | |
tree | 42a0255084ee587f09ceeaea76a9843a41d34f48 /stdlib/source | |
parent | 9f839b97e95f56e228d78e5d29f7d31d0d3f8eb1 (diff) |
- The bodies of actor messages are run within the Task monad.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/concurrency/actor.lux | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/stdlib/source/lux/concurrency/actor.lux b/stdlib/source/lux/concurrency/actor.lux index 91e4f7a4a..93f1ed6d8 100644 --- a/stdlib/source/lux/concurrency/actor.lux +++ b/stdlib/source/lux/concurrency/actor.lux @@ -325,7 +325,9 @@ (do P;Monad<Promise> [(~ g!return) (: (T;Task [((~ g!type) (~@ g!refs)) (~ g!outputT)]) - (~ body))] + (do T;Monad<Task> + [] + (~ body)))] (case (~ g!return) (#;Right [(~ g!state) (~ g!return)]) (exec (io;run (P;resolve (#;Right (~ g!return)) (~ g!task))) |