C# Class Caliburn.Micro.Execute

Enables easy marshalling of code to the UI thread.
Show file Open project: bryanhunter/CaliburnMicroTalk Class Usage Examples

Public Methods

Method Description
InitializeWithDispatcher ( ) : void

Initializes the framework using the current dispatcher.

OnUIThread ( this action ) : void

Executes the action on the UI thread.

ResetWithoutDispatcher ( ) : void

Resets the executor to use a non-dispatcher-based action executor.

Method Details

InitializeWithDispatcher() public static method

Initializes the framework using the current dispatcher.
public static InitializeWithDispatcher ( ) : void
return void

OnUIThread() public static method

Executes the action on the UI thread.
public static OnUIThread ( this action ) : void
action this The action to execute.
return void

ResetWithoutDispatcher() public static method

Resets the executor to use a non-dispatcher-based action executor.
public static ResetWithoutDispatcher ( ) : void
return void