Binding Performance

Bindings are normally processed one by one. For example, if you have a widget displaying 20 different metrics of a device and each reading metric from a remote server takes 1 second, widget loading will take 20 seconds.

To increase widget loading speed enable Startup Bindings Concurrency flag of a root panel. In this case each binding will be processed in separate thread. In the above example, this will cause all metric requests to be executed simultaneously, so the widget will load in 1 second (20 times faster).

See the generic Binding Performance article for more information.

Was this page helpful?