C# Class At.FF.Krems.FullscreenBrowser.QueueManager

The queue manager.
Mostrar archivo Open project: Grisu-NOE/Infoscreen

Public Methods

Method Description
ExecuteAction ( System.Action action, bool executeIfCalledOnWorkerThread = false ) : void

Executes an action in the worker thread. If you call this method not on worker thread, no action will be executed.

QueueManager ( ) : System

Initializes a new instance of the QueueManager class.

Method Details

ExecuteAction() public method

Executes an action in the worker thread. If you call this method not on worker thread, no action will be executed.
public ExecuteAction ( System.Action action, bool executeIfCalledOnWorkerThread = false ) : void
action System.Action The action. Use it like delegate{...}.
executeIfCalledOnWorkerThread bool If method gets called on worker thread and this flag is set to true, action will be called direct on worker thread. /// If false no execution! Default is false.
return void

QueueManager() public method

Initializes a new instance of the QueueManager class.
public QueueManager ( ) : System
return System