C# Class System.Threading.Invokers

Extension methods and utilities for ISynchronizedInvokes
Afficher le fichier Open project: madelson/Emotiv-Experimenter

Méthodes publiques

Méthode Description
BeginInvoke ( this invoker, System.Action action ) : IAsyncResult

Begin invoking an action

Invoke ( this invoker, System.Action action ) : void

Invoke an action

InvokeSafe ( this invoker, System.Action action ) : void

As invoke, but always called on the correct thread

Method Details

BeginInvoke() public static méthode

Begin invoking an action
public static BeginInvoke ( this invoker, System.Action action ) : IAsyncResult
invoker this
action System.Action
Résultat IAsyncResult

Invoke() public static méthode

Invoke an action
public static Invoke ( this invoker, System.Action action ) : void
invoker this
action System.Action
Résultat void

InvokeSafe() public static méthode

As invoke, but always called on the correct thread
public static InvokeSafe ( this invoker, System.Action action ) : void
invoker this
action System.Action
Résultat void