Files @ 3b2255e3576d
Branch filter:

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

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

from .virtualtimescheduler import VirtualTimeScheduler
from typing import Any, Optional

class HistoricalScheduler(VirtualTimeScheduler):
    def __init__(self, initial_clock: Optional[Any] = ..., comparer: Optional[Any] = ...) -> None: ...
    @property
    def now(self): ...
    @staticmethod
    def add(absolute: Any, relative: Any): ...
    def to_datetime_offset(self, absolute: Any): ...
    def to_relative(self, timespan: Any): ...