Why are most UI frameworks single threaded?

AndroidMultithreadingSwingUser Interface

Android Problem Overview


For example, Java Swing and Android UI both use a single threaded model where a single UI thread is responsible for updating all the UI. What made the framework designers chose one thread model over the other?

Wouldn't multiple threaded UI model potentially give you more performance albeit at the cost of more complexity? I realize that the latter is a big deal because thread related bugs are nasty but I am wondering if there are any other advantages to single-threaded model other than simplicity?

Android Solutions


Solution 1 - Android

> What made the framework designers chose one thread model over the other?

From the horse's mouth:

> AWT was initially exposed as a normal > multi-threaded Java library. But as > the Java team looked at the experience > with AWT and with the deadlocks and > races that people had encountered, we > began to realize that we were making a > promise we couldn't keep. > > This analysis culminated in one of the > design reviews for Swing in 1997, when > we reviewed the state of play in AWT, > and the overall industry experience, > and we accepted the Swing team's > recommendation that Swing should > support only very limited > multi-threading.

(Read the whole article, it explains the decision in great detail and states that the exact same problems and eventual move to a single-threaded model had even occured earlier at Xerox PARC - the place where almost everything we consider bleeding edge modern in CS was invented 30 years ago)

> Wouldn't multiple threaded UI model > potentially give you more performance > albeit at the cost of more complexity?

Absolutely not, because drawing the GUI and processing user actions (which is everything the UI thread needs to do) is not going to be the bottleneck in any sane 2D application.

Solution 2 - Android

>Wouldn't multiple threaded UI model potentially give you more performance albeit at the cost of more complexity?

Not in most cases, and that added complexity would do more harm than good the vast majority of the time. You also have to realize that the UI framework must deal with the underlying OS model as well. Sure, it could work around the model and abstract that away from the programmer, but it's simply not worth it in this case.

The amount of bugs caused by multiple threads updating the UI ad hoc would far outweigh what would be for the most part meaningless performance gains (if there were even gains, threading comes with an associated overhead of its own due to locking and synchronization, you may actually just be making the performance worse a lot of the time).

In this case it's better to use multiple threads explicitly and only when needed. Most of the time in a UI you want everything on one thread and you don't gain much if anything by using multiple threads. UI interactions are almost never a bottleneck.

Solution 3 - Android

No, probably not. At least not when you try to run the threads on the CPU. On the GPU there is already a lot of parallel processing in various forms. Not as much for the simple GUI work, but for fancy 3D (shading, reflections etc.)

Solution 4 - Android

I think it's all about deadlock prevention.

Swing's components are not considered thread-safe, and they don't have to be because of this Event Dispatcher Thread. If the UI was multi-threaded, the whole app would have to rely on every component behaving itself in a thread-safe manner, and if any didn't, then deadlocks could arise in obscure situations.

So, it's just safer.

Not only that, but the same design has been chosen by Windows Forms (& .Net), GTK, Motif, and various others. I wonder if Java would have been forced into this decision by the underlying OS APIs which they interact with. Certainly SWT is forced into this situation by Windows Forms.

For more info, "EDT" is a good place to start http://en.wikipedia.org/wiki/Event_dispatching_thread

For .NET, the equivalent of SwingWorker is known as BackgroundWorker.

Solution 5 - Android

They are all not single threaded anymore. The modern ones all build a scene graph now and render/compose them in different threads. A Html widget does layout calculations not only in multiple threads but multiple processes.

In general with the widespread use of MVVM pattern it makes no sense for complex models. You can update the Models from any thread. IMHO this was the major reason for it's invention not the data binding argument.

You can debate philosophically if you call this still single threaded just because the mouse/key/touch events arrive all in one thread. Manipulations happen in many places nowadays. And the GPU scene graph is rendered with thousands of parallel shaders how does this apply to the question?

Solution 6 - Android

This is because of the nature of an UI application.

You should read the input (Mouse or Keyboard), dispatch the events, let them process and than draw the screen again.

Try do it on multi-thread process.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser308808View Question on Stackoverflow
Solution 1 - AndroidMichael BorgwardtView Answer on Stackoverflow
Solution 2 - AndroidEd S.View Answer on Stackoverflow
Solution 3 - AndroidStephan EggermontView Answer on Stackoverflow
Solution 4 - AndroidlaherView Answer on Stackoverflow
Solution 5 - AndroidLotharView Answer on Stackoverflow
Solution 6 - AndroidMarcos VasconcelosView Answer on Stackoverflow