Files
Solax/myenv/lib/python3.12/site-packages/reactivex/abc/startable.py
2024-09-13 09:46:28 +02:00

15 lines
266 B
Python

from abc import ABC, abstractmethod
class StartableBase(ABC):
"""Abstract base class for Thread- and Process-like objects."""
__slots__ = ()
@abstractmethod
def start(self) -> None:
raise NotImplementedError
__all__ = ["StartableBase"]