Class ExecutionEngine
Deotes an execution engine for incremental computation
Inherited Members
Namespace: NMF.Expressions
Assembly: NMF.Expressions.dll
Syntax
public abstract class ExecutionEngine
Properties
| Edit this page View SourceCurrent
Gets or sets the current execution engine
Declaration
public static ExecutionEngine Current { get; set; }
Property Value
Type | Description |
---|---|
ExecutionEngine |
TransactionActive
Indicates whether the system is in a transaction
Declaration
public bool TransactionActive { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
| Edit this page View SourceBeginTransaction()
Starts a new change transaction
Declaration
public void BeginTransaction()
CommitTransaction()
Commits the transaction
Declaration
public void CommitTransaction()
Execute(List<INotifiable>)
Propagates changes of the given DDG nodes
Declaration
protected abstract void Execute(List<INotifiable> nodes)
Parameters
Type | Name | Description |
---|---|---|
List<INotifiable> | nodes | The changed DDG nodes |
ExecuteSingle(INotifiable)
Propagates the changes of a single DDG node
Declaration
protected virtual void ExecuteSingle(INotifiable source)
Parameters
Type | Name | Description |
---|---|---|
INotifiable | source | The changed DDG node |
InvalidateNode(INotifiable)
Invalidates the given DDG node
Declaration
public void InvalidateNode(INotifiable node)
Parameters
Type | Name | Description |
---|---|---|
INotifiable | node | The DDG node |
RollbackTransaction()
Rolls back the transaction
Declaration
public void RollbackTransaction()