mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
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: ...
|