Add `Arbiter.is_registry()` in prep for proper `.discovery._registry`

leslies_extra_appendix
Tyler Goodlet 2025-04-03 16:35:33 -04:00
parent 7d537e60cc
commit a99bec63a3
1 changed files with 13 additions and 7 deletions

View File

@ -2134,15 +2134,15 @@ async def async_main(
log.info(teardown_report)
# TODO: rename to `Registry` and move to `._discovery`!
# TODO: rename to `Registry` and move to `.discovery._registry`!
class Arbiter(Actor):
'''
A special registrar actor who can contact all other actors
within its immediate process tree and possibly keeps a registry
of others meant to be discoverable in a distributed
application. Normally the registrar is also the "root actor"
and thus always has access to the top-most-level actor
(process) nursery.
A special registrar (and for now..) `Actor` who can contact all
other actors within its immediate process tree and possibly keeps
a registry of others meant to be discoverable in a distributed
application. Normally the registrar is also the "root actor" and
thus always has access to the top-most-level actor (process)
nursery.
By default, the registrar is always initialized when and if no
other registrar socket addrs have been specified to runtime
@ -2162,6 +2162,12 @@ class Arbiter(Actor):
'''
is_arbiter = True
# TODO, implement this as a read on there existing a `._state` of
# some sort setup by whenever we impl this all as
# a `.discovery._registry.open_registry()` API
def is_registry(self) -> bool:
return self.is_arbiter
def __init__(
self,
*args,