diff --git a/stubs/rx/concurrency/mainloopscheduler/qtscheduler.pyi b/stubs/rx/concurrency/mainloopscheduler/qtscheduler.pyi new file mode 100644 --- /dev/null +++ b/stubs/rx/concurrency/mainloopscheduler/qtscheduler.pyi @@ -0,0 +1,16 @@ +# Stubs for rx.concurrency.mainloopscheduler.qtscheduler (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 QtScheduler(SchedulerBase): + qtcore: Any = ... + def __init__(self, qtcore: 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] = ...): ... + def schedule_periodic(self, period: Any, action: Any, state: Optional[Any] = ...): ...