开发者

Best practice for passing values from a non-UI thread to a UI thread in an Eclipse plugin application

Is there a best practice/shining example out there of passing values from a non-UI thread to a U开发者_JAVA百科I thread in an Eclipse plugin application?


You could use Display.asyncExec()

To allow background threads to perform operations on objects belonging to the UI-thread, the methods syncExec(Runnable runnable) and asyncExec(Runnable runnable) of Display are used.
These are the only methods in SWT that can be called from any thread.
They allow a runnable to be executed by the UI-thread, - either synchronously, causing the background thread to wait for the runnable to finish, - or asynchronously allowing the background thread to continue execution without waiting for the result.

A runnable that is executed using syncExec() most closely matches the equivalent direct call to the UI operation because a Java method call always waits for the result before proceeding, just like syncExec().

As illustrated by this thread:

I thought all those runnables or threads I give to Display.sync or asyncExec are 'Threads' and they get scheduled by the jvm or something along with the UI thread!
I never knew they are not considered the threads, but only pieces of code executed asynchronously by the UI thread!

This piece of code asynchronously executed by the UI thread might be a good place to access values (synchronized access) from other thread.

See "How to update a GUI from another thread in Java" as a practical example of passing a value to the UI thread.

(Note: the non-eclipse non-SWT way would have been, in Swing, by using a Swing Worker, as I mentioned a year ago)


A little late getting into this one, but I would use a org.eclipse.ui.progress.UIJob.

When your non-UI thread has some information to send to the UI, it can spawn off a UIJob, that runs in a particular Display. Behind the scenes, asyncExec is used, but you get a lot of nice parts of the Jobs API along with it like a ProgressMonitor, job cancelation, rule scheduling, and join/waiting for other jobs.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜