# Stubs for rx.concurrency.mainloopscheduler.eventletscheduler (Python 3) # # NOTE: This dynamically typed stub was automatically generated by stubgen. from rx.concurrency.schedulerbase import SchedulerBase from typing import Any, Optional eventlet: Any log: Any class EventLetEventScheduler(SchedulerBase): def __init__(self) -> 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): ...