Add `Arbiter.is_registry()` in prep for proper `.discovery._registry`
parent
7d537e60cc
commit
a99bec63a3
|
@ -2134,15 +2134,15 @@ async def async_main(
|
||||||
log.info(teardown_report)
|
log.info(teardown_report)
|
||||||
|
|
||||||
|
|
||||||
# TODO: rename to `Registry` and move to `._discovery`!
|
# TODO: rename to `Registry` and move to `.discovery._registry`!
|
||||||
class Arbiter(Actor):
|
class Arbiter(Actor):
|
||||||
'''
|
'''
|
||||||
A special registrar actor who can contact all other actors
|
A special registrar (and for now..) `Actor` who can contact all
|
||||||
within its immediate process tree and possibly keeps a registry
|
other actors within its immediate process tree and possibly keeps
|
||||||
of others meant to be discoverable in a distributed
|
a registry of others meant to be discoverable in a distributed
|
||||||
application. Normally the registrar is also the "root actor"
|
application. Normally the registrar is also the "root actor" and
|
||||||
and thus always has access to the top-most-level actor
|
thus always has access to the top-most-level actor (process)
|
||||||
(process) nursery.
|
nursery.
|
||||||
|
|
||||||
By default, the registrar is always initialized when and if no
|
By default, the registrar is always initialized when and if no
|
||||||
other registrar socket addrs have been specified to runtime
|
other registrar socket addrs have been specified to runtime
|
||||||
|
@ -2162,6 +2162,12 @@ class Arbiter(Actor):
|
||||||
'''
|
'''
|
||||||
is_arbiter = True
|
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__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
*args,
|
*args,
|
||||||
|
|
Loading…
Reference in New Issue