C# Class DotNetWorkQueue.LinqCompile.LinqCompiler

Compiles Linq strings into actions and functions
Inheritance: ILinqCompiler
Exibir arquivo Open project: blehnen/DotNetWorkQueue

Public Methods

Method Description
CompileAction ( LinqExpressionToRun linqExpression ) : object>.Action

Compiles the input linqExpression into a Linq expression tree

CompileFunction ( LinqExpressionToRun linqExpression ) : Func

Compiles the input linqExpression into a Linq expression tree

Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

LinqCompiler ( IObjectPool objectPool ) : System

Initializes a new instance of the LinqCompiler class.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources.

Method Details

CompileAction() public method

Compiles the input linqExpression into a Linq expression tree
public CompileAction ( LinqExpressionToRun linqExpression ) : object>.Action
linqExpression DotNetWorkQueue.Messages.LinqExpressionToRun The linqExpression.
return object>.Action

CompileFunction() public method

Compiles the input linqExpression into a Linq expression tree
public CompileFunction ( LinqExpressionToRun linqExpression ) : Func
linqExpression DotNetWorkQueue.Messages.LinqExpressionToRun The linqExpression.
return Func

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void

Dispose() protected method

Releases unmanaged and - optionally - managed resources.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
return void

LinqCompiler() public method

Initializes a new instance of the LinqCompiler class.
public LinqCompiler ( IObjectPool objectPool ) : System
objectPool IObjectPool The object pool.
return System