You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.The text was updated successfully, but these errors were encountered: