Click or drag to resize

IInvokeableThread Interface

Thread that can be invoked, i.e. code can be executed using Invoke(Action) or InvokeAsync(Action) always from this thread. This is especially important for objects which are thread sensitive. These objects must be created and it's functions must be called always from the same thread.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public interface IInvokeableThread : IDisposable

The IInvokeableThread type exposes the following members.

Methods
 NameDescription
Public methodDisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
Public methodInvoke Executes the provided action synchronously. This means that this function returns only after the provided action was executed.
Public methodInvokeAsync Executes the provided action asynchronously. This means that this function immediately returns, without waiting for the action to be executed.
Top
See Also