userver
C++ Async Framework
Toggle main menu visibility
Loading...
Searching...
No Matches
classes.py
1
import
subprocess
2
import
uuid
3
4
5
class
DaemonInstance
:
6
process: subprocess.Popen |
None
7
8
def
__init__(self, owner, process) -> None:
9
self.
id
= uuid.uuid4().hex
10
self.
_owner
= owner
11
self.
process
= process
12
13
async def
aclose(self) -> None:
14
await self.
_owner
.__aexit__(
None
,
None
,
None
)
en
testsuite
daemons
classes.py
Generated on
for userver by
Doxygen
1.17.0