forked from goodboy/tractor
1
0
Fork 0

Drop entrypoints from `Actor`

prehardkill
Tyler Goodlet 2020-07-03 17:05:38 -04:00
parent 7df6fe54f0
commit a1cae99e23
1 changed files with 5 additions and 0 deletions

View File

@ -242,6 +242,9 @@ class Actor:
_parent_main_data: Dict[str, str]
_parent_chan_cs: Optional[trio.CancelScope] = None
# if started on ``asycio`` running ``trio`` in guest mode
_infected_aio: bool = False
def __init__(
self,
name: str,
@ -1093,6 +1096,8 @@ class Actor:
log.info(f"Handshake with actor {uid}@{chan.raddr} complete")
return uid
def is_infected_aio(self) -> bool:
return self._infected_aio
class Arbiter(Actor):
"""A special actor who knows all the other actors and always has