GithubHelp home page GithubHelp logo

Comments (5)

dddomodossola avatar dddomodossola commented on June 2, 2024

Right now, the idle function is strictly related to the graphic update. What's the purpose of your request?

from remi.

KenT2 avatar KenT2 commented on June 2, 2024

I need to poll another process at intervals to see if it is running. I need to do this regularly, not just when there is a user event and Idle seemed to be the way you wanted it done,

Having thought about it further I think it would be better for Remi to implement an interval alarm like the tkinter.after() function

obj = gui.After(Interval (mS),'callback') and gui.AfterCancel(obj)

the alarm time is guaranteed to be not less than Interval but it can be more. It is a single shot alarm so if you want a repetitive interval you call After inside the callback.

This is probably safer from race conditions than Idle and more flexible. It would however need the ability to set an initial interval alarm in main() or in a callback that happens just after main() but before user events are serviced.

from remi.

nzjrs avatar nzjrs commented on June 2, 2024

you can start your own thread.Timers in main() and then do what you want in that callback.

I also added access to outer scope via userdata, so you can do your own polling in your own mainloop and spin the REMI webapp thread where you like.

from remi.

dddomodossola avatar dddomodossola commented on June 2, 2024

Here is an example in order to start a new Timer with preferred interval:

class MyApp(App):
    def main(self):
        my_interval_func(0.1) #first call, then the function is called automatically by timer

def my_interval_func(update_interval):
    #here your operations executed at every update_interval
    Timer(update_interval, my_interval_func, (update_interval,)).start()

from remi.

KenT2 avatar KenT2 commented on June 2, 2024

Thanks
Have added an example of use to widgets_overview_app.py

from remi.

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.