tractor/examples/debugging
Tyler Goodlet a668f714d5 Allow passing function refs to `Portal.run()`
This resolves and completes #69 allowing all RPC invocation APIs to pass
function references directly instead of explicit `str` names for the
target namespace and function (this is still done implicitly
underneath).  This brings us closer to `trio`'s task running API as well
as acknowledges that any inter-host RPC system (and API) will likely
need to be implemented on top of local RPC primitives anyway. Even if
this ends up **not** being true we can always go to "function stubs" as
part of our IAC protocol or, add a new method to do explicit namespace
calls: `.run_from_module()` or whatever everyone votes on.

Resolves #69

Further, this commit drops `Actor.statespace` from the entire system
since a user can easily get this same functionality using module
level variables. Fix docs to match all these changes (luckily mostly
already done due to example scripts referencing).
2020-12-21 09:09:55 -05:00
..
multi_daemon_subactors.py Allow passing function refs to `Portal.run()` 2020-12-21 09:09:55 -05:00
multi_nested_subactors_error_up_through_nurseries.py Allow passing function refs to `Portal.run()` 2020-12-21 09:09:55 -05:00
multi_subactor_root_errors.py Allow passing function refs to `Portal.run()` 2020-12-21 09:09:55 -05:00
multi_subactors.py Allow passing function refs to `Portal.run()` 2020-12-21 09:09:55 -05:00
root_actor_breakpoint.py Add initial root actor debugger tests 2020-10-05 11:58:58 -04:00
root_actor_breakpoint_forever.py Add re-entrant root breakpoint test; demonstrates a bug.. 2020-10-05 11:58:58 -04:00
root_actor_error.py Add initial root actor debugger tests 2020-10-05 11:58:58 -04:00
root_cancelled_but_child_is_in_tty_lock.py Allow passing function refs to `Portal.run()` 2020-12-21 09:09:55 -05:00
subactor_breakpoint.py Allow passing function refs to `Portal.run()` 2020-12-21 09:09:55 -05:00
subactor_error.py Allow passing function refs to `Portal.run()` 2020-12-21 09:09:55 -05:00