1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
from collections.abc import Callable, Iterable, Mapping
from typing import Any
__all__ = ["BaseProcess", "current_process", "active_children", "parent_process"]
class BaseProcess:
name: str
daemon: bool
authkey: bytes
_identity: tuple[int, ...] # undocumented
def __init__(
self,
group: None = None,
target: Callable[..., object] | None = None,
name: str | None = None,
args: Iterable[Any] = (),
kwargs: Mapping[str, Any] = {},
*,
daemon: bool | None = None,
) -> None: ...
def run(self) -> None: ...
def start(self) -> None: ...
def terminate(self) -> None: ...
def kill(self) -> None: ...
def close(self) -> None: ...
def join(self, timeout: float | None = None) -> None: ...
def is_alive(self) -> bool: ...
@property
def exitcode(self) -> int | None: ...
@property
def ident(self) -> int | None: ...
@property
def pid(self) -> int | None: ...
@property
def sentinel(self) -> int: ...
def current_process() -> BaseProcess: ...
def active_children() -> list[BaseProcess]: ...
def parent_process() -> BaseProcess | None: ...
|