Show / Hide Table of Contents

    Class EcoreSynchronizationContext

    Definition

    Namespace:
    ElmSharp
    Assembly:
    ElmSharp.dll
    API Level:
    preview

    Provides a synchronization context for the EFL application.

    public class EcoreSynchronizationContext : SynchronizationContext
    Inheritance
    Object
    SynchronizationContext
    EcoreSynchronizationContext

    Constructors

    View Source

    EcoreSynchronizationContext()

    Initializes a new instance of the EcoreSynchronizationContext class.

    Declaration
    public EcoreSynchronizationContext()
    API Level: preview

    Methods

    View Source

    Initialize()

    Initilizes a new EcoreSynchronizationContext and installs into the current thread.

    Declaration
    public static void Initialize()
    Remarks

    It is equivalent

    SetSynchronizationContext(new EcoreSynchronizationContext());
    API Level: preview
    View Source

    Post(SendOrPostCallback, Object)

    Dispatches an asynchronous message to a Ecore main loop.

    Declaration
    public override void Post(SendOrPostCallback d, object state)
    Parameters
    Type Name Description
    SendOrPostCallback d

    The SendOrPostCallback delegate to call.

    Object state

    The object passed to the delegate.

    Overrides
    SynchronizationContext.Post(SendOrPostCallback, Object)
    Remarks

    The Post method starts an asynchronous request to post a message.

    API Level: preview
    View Source

    Send(SendOrPostCallback, Object)

    Dispatches an synchronous message to a Ecore main loop.

    Declaration
    public override void Send(SendOrPostCallback d, object state)
    Parameters
    Type Name Description
    SendOrPostCallback d

    The SendOrPostCallback delegate to call.

    Object state

    The object passed to the delegate.

    Overrides
    SynchronizationContext.Send(SendOrPostCallback, Object)
    Remarks

    The Send method starts a synchronous request to send a message.

    API Level: preview
    • View Source
    Back to top Copyright © 2016-2020 Samsung
    Generated by DocFX