# Stubs for rx.concurrency.mainloopscheduler.twistedscheduler (Python 3) # # NOTE: This dynamically typed stub was automatically generated by stubgen. from rx.concurrency.schedulerbase import SchedulerBase from typing import Any, Optional log: Any class TwistedScheduler(SchedulerBase): reactor: Any = ... def __init__(self, reactor: Any) -> None: ... def schedule(self, action: Any, state: Optional[Any] = ...): ... def schedule_relative(self, duetime: Any, action: Any, state: Optional[Any] = ...): ... def schedule_absolute(self, duetime: Any, action: Any, state: Optional[Any] = ...): ... @property def now(self): ...