RE: Help needed
[email protected] (Christopher Fowler) Wed, 07 Feb 2007 09:59:46 -0500
| Newsgroups | perl.ithreads |
|---|---|
| Message-ID | <[email protected]> |
On Wed, 2007-02-07 at 08:54 -0600, Daniel Rychlik wrote: > Or there are other alternatives. I had to build a multithreaded > application much like you are describing. After months of hacking > with > Perl, I decided to break a piece off of threads in java. I haven't > looked back. Good point. Does the app only display data? If so how about display in HTML? You could create a SWING app that has 10 tabs. Each tab is a HTML TextPane that gets updated but its own thread. This would cut down on the clutter on the desktop. If you wanted to stick with Perl maybe the Perl-TK API has similar functionality.