Giter VIP home page Giter VIP logo

Comments (3)

OddCoincidence avatar OddCoincidence commented on July 30, 2024 1

@Pauan I updated the proposal with your suggestions.

from gloo.

Pauan avatar Pauan commented on July 30, 2024

pub fn new(millis: u32, callback: F) -> Alarm

This needs to accept f64, since Date cannot fit into a u32 (even the current date is far beyond u32).

pub fn forget(mut self) -> String { .. }

I think it would be better if it returned an AlarmId, which would then have a cancel method.

I know that's not what gloo-timers does, but personally I think gloo-timers would benefit from that as well. Hiding implementation details seems like a good idea.

PeriodicAlarm

I think this should be renamed to RecurringAlarm

pub fn new<F>(minutes: u32, callback: F) -> PeriodicAlarm

I'm not sure (I need to test it), but I think it allows for partial minutes, like 1.5, so this should take f64.

Also, sometimes it's useful to specify both when and periodInMinutes, so we should have support for that, possibly through a new method.

from gloo.

OddCoincidence avatar OddCoincidence commented on July 30, 2024

Should we actually use types like std::time::{Instant, Duration} and then convert internally?

I think it would be better if it returned an AlarmId, which would then have a cancel method.

I like this a lot.

I think this should be renamed to RecurringAlarm

👍

Also, sometimes it's useful to specify both when and periodInMinutes, so we should have support for that, possibly through a new method.

This got me thinking, should we come up with more descriptive names for the constructors than just new, (combined with above idea) something like:

Alarm::schedule_at(Instant::now().add(Duration::of_secs(10)))

from gloo.

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.