Giter VIP home page Giter VIP logo

Comments (6)

jim-easterbrook avatar jim-easterbrook commented on August 20, 2024

You'd really want a separate 'processing' (or tasks) thread to do this, as there are typically a bunch of plots to be done sequentially, followed by an upload. To keep life simple the processing thread wouldn't have access to the data stores, so the files to be plotted would need to be created in the main thread, then their details handed to the processing thread. I like to use queues for this sort of thing, rather than callbacks. The processing thread would just take tasks off the queue one by one, do them, and then sleep when the queue's empty.

from pywws.

3v1n0 avatar 3v1n0 commented on August 20, 2024

Oh, yes... Can be done also like this. Keeping all this stuff into the Tasks thread.
But I think it's inconvenient to do all in order as it's done now, since it causes the livedata to be ignored for a while until CPU is ready...

from pywws.

jim-easterbrook avatar jim-easterbrook commented on August 20, 2024

You misunderstand - I'm not suggesting holding everything up while the plots are done (although I don't have a problem with ignoring live data for a minute or two) but you need to make sure you don't try and do half a dozen plots concurrently. So each plot needs to start after the previous one finishes, i.e. a queue.

from pywws.

3v1n0 avatar 3v1n0 commented on August 20, 2024

Ah, sure... Keeping the order was intended.

from pywws.

jim-easterbrook avatar jim-easterbrook commented on August 20, 2024

I'll have a go at doing this, probably in a week or two after the next "release".

from pywws.

jim-easterbrook avatar jim-easterbrook commented on August 20, 2024

I've done a first go at using an uploads queue in commit ff6561. I'll add the 'service' uploads next.

from pywws.

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.