Show / Hide Table of Contents

Class ExecutionEngine

Deotes an execution engine for incremental computation

Inheritance
object
ExecutionEngine
ParallelExecutionEngine
SequentialExecutionEngine
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: NMF.Expressions
Assembly: NMF.Expressions.dll
Syntax
public abstract class ExecutionEngine

Properties

| Edit this page View Source

Current

Gets or sets the current execution engine

Declaration
public static ExecutionEngine Current { get; set; }
Property Value
Type Description
ExecutionEngine
| Edit this page View Source

TransactionActive

Indicates whether the system is in a transaction

Declaration
public bool TransactionActive { get; }
Property Value
Type Description
bool

Methods

| Edit this page View Source

BeginTransaction()

Starts a new change transaction

Declaration
public void BeginTransaction()
| Edit this page View Source

CommitTransaction()

Commits the transaction

Declaration
public void CommitTransaction()
| Edit this page View Source

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

| Edit this page View Source

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

| Edit this page View Source

InvalidateNode(INotifiable)

Invalidates the given DDG node

Declaration
public void InvalidateNode(INotifiable node)
Parameters
Type Name Description
INotifiable node

The DDG node

| Edit this page View Source

RollbackTransaction()

Rolls back the transaction

Declaration
public void RollbackTransaction()

Extension Methods

ExpressionExtensions.AsOne<T>(T)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX