Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Threading in Perl

by Cine (Friar)
on Jul 29, 2003 at 22:26 UTC ( [id://279015]=note: print w/replies, xml ) Need Help??


in reply to Threading in Perl

We could use some sample code here, but here is some general pointers:
For functions which take a long time to process there are a few ways of doing it. You found the two obvious ones, namely let it run and thus block the interface, second start a thread and let that do the work. A third option to consider is to break up the work in smaller bits, thus in your idle loop calculate some of the work required, short enough so that the interface does not block and then return the control to the interface. In many cases, this is the simplest option.
But if you really want threads, then make you gui the primary thread and when one of your actions starts running, give it a shared variable (threads::shared) so that it can report back progress, which you can then check in the idle loop.

T I M T O W T D I

Replies are listed 'Best First'.
Re: Re: Threading in Perl
by bobn (Chaplain) on Jul 29, 2003 at 22:37 UTC

    Some Tk widget options will accept a reference to a variable (example: -textvariable in an Entry or LabEntry widget) so when the varible changes, the widget updates with nbo further work. So if the process thread updates a shared variable that the widget references, this may work for you.

    --Bob Niederman, http://bob-n.com
      Is Tk available on winblows?

      T I M T O W T D I

        Yes, it's part of the Activestate install, last I checked.

        --Bob Niederman, http://bob-n.com

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://279015]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-19 02:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found