Files @ 3b2255e3576d
Branch filter:

Location: light9/stubs/rx/concurrency/newthreadscheduler.pyi

Drew Perttula
big stubgen run for PIL, moviepy, rx
Ignore-this: 349c755d8d70fdd1ff5711bde41f1dcb
# Stubs for rx.concurrency.newthreadscheduler (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from .eventloopscheduler import EventLoopScheduler
from .schedulerbase import SchedulerBase
from typing import Any, Optional

log: Any

class NewThreadScheduler(SchedulerBase):
    thread_factory: Any = ...
    def __init__(self, thread_factory: Optional[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] = ...): ...

new_thread_scheduler: Any