DisplayQueue
(Automatically adding template at the end of the page.)
(Updated Edited template to July 12, 2025.)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
<message>Write the content here to display this box</message>
DisplayQueue is part of the coding framework for MDriven Framework. It implements the databinding updates async to avoid thrashing the UI with updates that may be passing states. For example, if you looped this command <code>x:=x+1</code> - we do not want to force UI updates for each loop.
DisplayQueue is part of the coding framework for MDriven Framework. It implements the databinding updates async to avoid thrashing the UI with updates that may be passing states. For example, if you looped this command <code>x:=x+1</code> - we do not want to force UI updates for each loop.


Line 6: Line 7:
  WPFDequeuer.Active = true;
  WPFDequeuer.Active = true;
  [[Category:MDriven Framework]]
  [[Category:MDriven Framework]]
{{Edited|July|12|2024}}
{{Edited|July|12|2025}}

Latest revision as of 05:48, 20 January 2025

This page was created by Hans.karlsen@mdriven.net on 2018-02-05. Last edited by Edgar on 2025-01-20.

DisplayQueue is part of the coding framework for MDriven Framework. It implements the databinding updates async to avoid thrashing the UI with updates that may be passing states. For example, if you looped this command x:=x+1 - we do not want to force UI updates for each loop.

DisplayQueue polling is different on different UI implementations.

For WPF, call this early in your application:

WPFDequeuer.Active = true;