Git Product home page Git Product logo

Comments (1)

shawnkoh avatar shawnkoh commented on July 3, 2024

A workaround i've been using is this function

@curry_flipped(1)
def sleep(
    source: AsyncObservable[_TSource],
    seconds: float,
    sleep_on_start: bool = False,
) -> AsyncObservable[_TSource]:
    started = sleep_on_start

    @curry_flipped(1)
    async def _sleep(source, seconds: float):
        nonlocal started
        if started:
            await asyncio.sleep(seconds)
        else:
            started = True
        return source

    return pipe(
        source,
        rx.map_async(_sleep(seconds)),
    )

example:

def setup(token: str):
    session = aiohttp.ClientSession(timeout=aiohttp.ClientTimeout(total=None))

    return pipe(
        rx.interval(0, 2),
        rx.flat_map(
            lambda _: pipe(
                range(14),
                rx.from_iterable,
                rx_helpers.sleep(0.1),
                rx.map(lambda y: arrow.now().shift(days=y)),
                rx.map_async(
                    schedules(token, session),
                ),
            )
        ),
        rx.subscribe_async(rx.AsyncAnonymousObserver()),
    )

from aioreactive.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.