473,388 Members | 1,220 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,388 software developers and data experts.

Help Me!

Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...
Jul 17 '05 #1
9 2310
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do
Swing but heard this, is that one of the issues with swing, the each share
the same thread? If they don't, another approach is setting priorities on
the threads but that is so unpredictable it is probably not worth trying as
much as the first thing I mentioned with calculations and sleep() intervals.

J
"viator" <vi****@rediffmail.com> wrote in message
news:dc**************************@posting.google.c om...
Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...

Jul 17 '05 #2
good thought.... wrong model though.....

If the batch was kicked of via an event, the thread that is running it
happens to BE the event loop. For what you are trying to do, you will have
to create a new thread to do the calculations. You might want to make you
class implement Runnable, and then put the calculations in the run() method.
Then you could just call new Thread(this).start();
good luck

"James" <ja**********@comcast.net> wrote in message
news:OJlfb.487999$Oz4.331841@rwcrnsc54...
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do
Swing but heard this, is that one of the issues with swing, the each share
the same thread? If they don't, another approach is setting priorities on
the threads but that is so unpredictable it is probably not worth trying as much as the first thing I mentioned with calculations and sleep() intervals.
J
"viator" <vi****@rediffmail.com> wrote in message
news:dc**************************@posting.google.c om...
Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...



Jul 17 '05 #3
"James" <ja**********@comcast.net> wrote in message
news:OJlfb.487999$Oz4.331841@rwcrnsc54...
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do
Swing but heard this, is that one of the issues with swing, the each share
the same thread? If they don't, another approach is setting priorities on
the threads but that is so unpredictable it is probably not worth trying as much as the first thing I mentioned with calculations and sleep()

intervals.

In my experience, the behavior of threads with different priorities id fully
predictable. One of my apps had a thread that updated a GUI. The update
worked, but was quite jerky, with a number of updates buffered up before
showing them. Lowering priority of the updating thread fixed the problem.
This effect was observed on Windows (98, NT, 2K and XP).

Just my $0.02

Alex Molochnikov
Gestalt Corporation

Jul 17 '05 #4

"Alex Molochnikov" <NO****@NO.SPAM> wrote in message
news:Resfb.12706$9l5.6566@pd7tw2no...
"James" <ja**********@comcast.net> wrote in message
news:OJlfb.487999$Oz4.331841@rwcrnsc54...
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do
Swing but heard this, is that one of the issues with swing, the each share the same thread? If they don't, another approach is setting priorities on the threads but that is so unpredictable it is probably not worth trying as
much as the first thing I mentioned with calculations and sleep()

intervals.

In my experience, the behavior of threads with different priorities id

fully predictable. One of my apps had a thread that updated a GUI. The update
worked, but was quite jerky, with a number of updates buffered up before
showing them. Lowering priority of the updating thread fixed the problem.
This effect was observed on Windows (98, NT, 2K and XP).

Just my $0.02

Alex Molochnikov
Gestalt Corporation


I'm glad but the java specification offers very little guarantees on thread
priority. It cant, because the JVM is a thread battling for runtime on
equal footing with a screen saver in windows. yes it may work and it may
work on those platforms, but even then, you are fortunate and another
configuration could change anything. Logically there is no way the thread
priorities can guarantee anything - as Java's priorities dont match up with
windows (10 to 7) and they dont even come close to Solaris. Very little is
guaranteed with threads and java as pertains to universal performance.
Jul 17 '05 #5
Sounds good, my point was predicated on calculations having their own
thread.
"Thomas Smith" <re*********************@cox.net> wrote in message
news:FXrfb.38341$AH4.20789@lakeread06...
good thought.... wrong model though.....

If the batch was kicked of via an event, the thread that is running it
happens to BE the event loop. For what you are trying to do, you will have to create a new thread to do the calculations. You might want to make you
class implement Runnable, and then put the calculations in the run() method. Then you could just call new Thread(this).start();
good luck

"James" <ja**********@comcast.net> wrote in message
news:OJlfb.487999$Oz4.331841@rwcrnsc54...
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do
Swing but heard this, is that one of the issues with swing, the each share the same thread? If they don't, another approach is setting priorities on the threads but that is so unpredictable it is probably not worth trying

as
much as the first thing I mentioned with calculations and sleep()

intervals.

J
"viator" <vi****@rediffmail.com> wrote in message
news:dc**************************@posting.google.c om...
Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...



Jul 17 '05 #6
How do you know the priority on windows is in the
range of 10-7? If I use the task manager in windows XP Professional
to change the priority of a process I am presented with the following
choices:

RealTime
High
AboveNormal
Normal
BelowNormal
Low

Did you notice that there is more than 5?
Also, I think/wonder if the Java priority is really a "SUB" priority
that operates within a single windows priority. For example
if I run a Java program via "java NewDraw" I am sure that
there is more than one thread inside this application, but
as far as windows is concerned there are two Processes
java.exe running at priority "normal" and
javaw.exe running at priority "normal"

Phil...
"James" <ja**********@comcast.net> wrote in message
news:8bCfb.494364$Oz4.341083@rwcrnsc54...

"Alex Molochnikov" <NO****@NO.SPAM> wrote in message
news:Resfb.12706$9l5.6566@pd7tw2no...
"James" <ja**********@comcast.net> wrote in message
news:OJlfb.487999$Oz4.331841@rwcrnsc54...
Just off the cuff, I thought the thread doing the calculations should
sleep() at intervals to allow the Gui to respond. Or, since I hardly do Swing but heard this, is that one of the issues with swing, the each share the same thread? If they don't, another approach is setting
priorities
on the threads but that is so unpredictable it is probably not worth
trying as
much as the first thing I mentioned with calculations and sleep() intervals.

In my experience, the behavior of threads with different priorities id

fully
predictable. One of my apps had a thread that updated a GUI. The update
worked, but was quite jerky, with a number of updates buffered up before
showing them. Lowering priority of the updating thread fixed the problem. This effect was observed on Windows (98, NT, 2K and XP).

Just my $0.02

Alex Molochnikov
Gestalt Corporation


I'm glad but the java specification offers very little guarantees on

thread priority. It cant, because the JVM is a thread battling for runtime on
equal footing with a screen saver in windows. yes it may work and it may
work on those platforms, but even then, you are fortunate and another
configuration could change anything. Logically there is no way the thread
priorities can guarantee anything - as Java's priorities dont match up with windows (10 to 7) and they dont even come close to Solaris. Very little is guaranteed with threads and java as pertains to universal performance.

Jul 17 '05 #7
vi****@rediffmail.com (viator) wrote in message news:<dc**************************@posting.google. com>...
Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...

Read the javadoc for javax.swing.SwingUtilities#invokeLater() method
and linked documentations from there. Your time-consuming task should
run as a separate thread separated from Swing GUI rendering
thread(a.k.a. AWT event dispatch thread).
Jul 17 '05 #8

"viator" <vi****@rediffmail.com> wrote in message
news:dc**************************@posting.google.c om...
Hello Everybody!
I am working on a program which renders its GUI using swing
components. The program does some bath processing (some lengthy
matematical calculations) when user submit a task using a command
button. but when that task is submitted the GUI stops responding to
events. I want to provide the option of interrupting the processing
prematurely but providing a command button is not helping beacause the
GUI is not responding to events once the calculations are started.
Please help me what sould i do.
Amit...


The biggest invalid assumption made here is that Windows is a multi-tasking
OS.
I'm running 2000 and it is constantly pausing with all kinds of programs and
not allowing other functions to run until the currently running program has
quit some procedure. OE does it all the time when it is going out and
bringing in mail - everything else stops until it completes the read, which
makes no sense because I/O uses very little of the systems resources (new
system with AMD 2500+ and 512 Meg ram). If I were using a phone modem I
would have to go out and have lunch while I waited.

Then again, M$ intelligence is equivelent to proverbial army intelligence --
so you really can't expect it to work in any reasonable fashion.

I also have a Linux machine (slower with less ram) and it runs circles
around the Windoze machine and never exhibits a slow response. It also goes
out and gets mail and I can't tell when it's doing it.

John
Jul 17 '05 #9
HG******@nifty.ne.jp (hiwa) wrote in message news:<68**************************@posting.google. com>...
vi****@rediffmail.com (viator) wrote in message news:<dc**************************@posting.google. com>...
Read the javadoc for javax.swing.SwingUtilities#invokeLater() method
and linked documentations from there. Your time-consuming task should
run as a separate thread separated from Swing GUI rendering
thread(a.k.a. AWT event dispatch thread).


I tried the following two methods. . .
One using the SwingWorker Class. . .

public void actionPerformed(ActionEvent evt){
Object o=evt.getSource();
if(o==cmdRun||o==txtInput){
final SwingWorker worker=new SwingWorker(){
public Object construct(){
/* the time consuming part */
runMachine();
return null;
}
};
worker.start();
}
/* other handlers . . .*/
}

And other one by implementing Runnable like this…

public void actionPerformed(ActionEvent evt){
Object o=evt.getSource();
if(o==cmdRun||o==txtInput){
/* the time consuming part */
/* here the time consuming part it in the run method of this class*/
new Thread(this).start();
}
/* other handlers . . .*/
}

Is the second implementation violates single thread rule? Please note
that the user interface is also updated by "Time consuming part" to
render outputs. Although both the method are working fine. which one
is better though?
Jul 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help...
9
by: Tom | last post by:
A question for gui application programmers. . . I 've got some GUI programs, written in Python/wxPython, and I've got a help button and a help menu item. Also, I've got a compiled file made with...
6
by: wukexin | last post by:
Help me, good men. I find mang books that introduce bit "mang header files",they talk too bit,in fact it is my too fool, I don't learn it, I have do a test program, but I have no correct doing...
3
by: Colin J. Williams | last post by:
Python advertises some basic service: C:\Python24>python Python 2.4.1 (#65, Mar 30 2005, 09:13:57) on win32 Type "help", "copyright", "credits" or "license" for more information. >>> With...
7
by: Corepaul | last post by:
Missing Help Files When I enter "recordset" as the keyword and search the Visual Basic Help index, I get many topics of interest in the resulting list. But there isn't any information available...
5
by: Steve | last post by:
I have written a help file (chm) for a DLL and referenced it using Help.ShowHelp My expectation is that a developer using my DLL would be able to access this help file during his development time...
8
by: Mark | last post by:
I have loaded Visual Studio .net on my home computer and my laptop, but my home computer has an abbreviated help screen not 2% of the help on my laptop. All the settings look the same on both...
10
by: JonathanOrlev | last post by:
Hello everybody, I wrote this comment in another message of mine, but decided to post it again as a standalone message. I think that Microsoft's Office 2003 help system is horrible, probably...
1
by: trunxnirvana007 | last post by:
'UPGRADE_WARNING: Array has a new behavior. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="9B7D5ADD-D8FE-4819-A36C-6DEDAF088CC7"' 'UPGRADE_WARNING: Couldn't resolve...
0
by: hitencontractor | last post by:
I am working on .NET Version 2003 making an SDI application that calls MS Excel 2003. I added a menu item called "MyApp Help" in the end of the menu bar to show Help-> About. The application...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.