ash-project/reactor

Add `allow_async?` flag to `compose`

Opened this issue · 0 comments

We need a way to control whether or not composed reactors can do things asynchronously.

if allow_async? is true:
If it is runtime composition, the reactor will be run in an async step. If it is compile time async, the steps produced will be allowed to be async.

if allow_async? is false:
If it is runtime composition, the reactor will be run in a sync step, passing the async?: false option to the reactor. I fit is compile time composition, the steps produced will not be allowed to be async.

compose :create_another_thing, __MODULE__ do
  allow_async? false
end