Code Monkey home page Code Monkey logo

Comments (5)

fubhy avatar fubhy commented on July 1, 2024 1

Are you maybe looking for our TestClock? https://github.com/Effect-TS/effect/blob/main/packages/effect/src/TestClock.ts

from effect.

fubhy avatar fubhy commented on July 1, 2024

This also comes as part of our TestContext (https://github.com/Effect-TS/effect/blob/661004f4bf5f8b25f5a0678c21a3a822188ce461/packages/effect/src/TestContext.ts) which is also utilized by our @effect/vitest package.

from effect.

fubhy avatar fubhy commented on July 1, 2024

Closing this for now. Feel free to re-open if this didn't answer your question!

from effect.

dilame avatar dilame commented on July 1, 2024

It is almost the same, but actually, not:) RxJS VirtualTimeScheduler automatically tracks the time, while Effect TestClock requires user to manually adjust time.

VirtualTimeScheduler doesn't even have any methods to manually set time. The only method it offers is VirtualTimeScheduler.flush() which execute all of its queued actions and takes care of adjusting time. It is crucial when you have multiple parallel processes, each with different delays, and each of them wants to know the current time at different points of executions.

from effect.

dilame avatar dilame commented on July 1, 2024

Something like this. I know, it looks non realistic, but it's just a simple simulation of real world scenarios

const waitRandomTimeAndPrintCurrentTime = Effect.gen(function *(){
    const randomSleepTime = yield* Random.nextIntBetween(1000,5000);
    yield* Effect.sleep(randomSleepTime);
    const currentTime = yield* Clock.currentTimeMillis;
    yield* Console.log(currentTime);
})

const test = Effect.gen(function* () {

    yield* Effect.forkDaemon(waitRandomTimeAndPrintCurrentTime)
    yield* Effect.forkDaemon(waitRandomTimeAndPrintCurrentTime)

})

I would like to have something like TestClock.flush that will execute all the actions that are waiting for execution. Something like tick in event loop, but for fibers.

from effect.

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.