Table of Contents

Interface IVariableNodeEvent

Namespace
LfrlAnvil.Reactive.State.Events
Assembly
LfrlAnvil.Reactive.State.dll

Represents a type-erased event emitted by an IVariableNode.

public interface IVariableNodeEvent

Properties

NewState

Current state of the Variable.

VariableState NewState { get; }

Property Value

VariableState

PreviousState

Previous state of the Variable.

VariableState PreviousState { get; }

Property Value

VariableState

Variable

Variable node that emitted this event.

IVariableNode Variable { get; }

Property Value

IVariableNode