Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Rich Client Platform (RCP) » Error when closing program cause of running job
Error when closing program cause of running job [message #840860] Tue, 10 April 2012 15:40 Go to next message
AmFreak Missing name is currently offline AmFreak Missing nameFriend
Messages: 25
Registered: June 2011
Junior Member
Hi,

i have an eclipse rcp app that does some periodically (every 5 seconds) work in a child thread. After the work is done the thread executes a method to update the Status Line of the app to inidicate that the work is finished.
It looks like this:

	protected void updateStatusBar()
	{
		 Display.getDefault().asyncExec(new Runnable() {
             @Override
             public void run() {
                 PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().findView(MainView.ID).
                 getViewSite().getActionBars().getStatusLineManager().setMessage("work finished");   
             }
         });
	}


It runs fine. The problem i have is when i close my app i get a Null Pointer Exception with this error from time to time:

Quote:

Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.progress.TaskBarProgressManager$2


Seems the program is deconstructing itself while the async job is running. So is there a way to get / wait for the running ui jobs, so that i can make sure the jobs are finsihed before the app is closed? Or a way to cancel them before the app "destroys" itself?

[Updated on: Tue, 10 April 2012 15:41]

Report message to a moderator

Re: Error when closing program cause of running job [message #841558 is a reply to message #840860] Wed, 11 April 2012 13:16 Go to previous message
Wim Jongman is currently offline Wim JongmanFriend
Messages: 423
Registered: July 2009
Senior Member
Hi AmFreak,

Are you using threads or jobs? when using threads lookin
thread.setdaemon(true).

When using jobs: do not to loop the job every five seconds but submit a new
job after the first job has finished with a delay of five seconds. The job
should then only be submitted if the platform is not running
(platform.isworkbenchrunning() / iworkbench.isclosing())

Hope this helps,

Wim


> Hi,
>
> i have an eclipse rcp app that does some periodically (every 5 seconds)
work in a child thread. After the work is done the thread executes a method
to update the Status Line of the app to inidicate that the work is finished.
> It looks like this:
>
>
> protected void updateStatusBar()
> {
> Display.getDefault().asyncExec(new Runnable() {
> @Override
> public void run() {
>
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().findView(MainView.ID).
> getViewSite().getActionBars().getStatusLineManager().setMessage("work
finished");
> }
> });
> }
>
>
> It runs fine. The problem i have is when i close my app i get a Null
Pointer Exception with this error from time to time:
>
> Quote:
>> Job found still running after platform shutdown. Jobs should be canceled
by the plugin that scheduled them during shutdown:
org.eclipse.ui.internal.progress.TaskBarProgressManager$2
>
>
> Seems the program is deconstruct itself while the async job is running. So
is there a way to get / wait for the running ui jobs, so that i can make sure
the jobs are finsihed before the app is closed? Or a way to cancel them
before the app "destroys" itself?
Previous Topic:Prompt user for an application to open a file with?
Next Topic:Output text in default editor
Goto Forum:
  


Current Time: Thu Apr 25 06:48:12 GMT 2024

Powered by FUDForum. Page generated in 0.02916 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top