Table of Contents

Class ExecutionOperator

Namespace
Executables.Operations
Assembly
executables.dll

Factory methods for creating execution operators.

public static class ExecutionOperator
Inheritance
ExecutionOperator
Inherited Members

Methods

Create<T1, T2, T3, T4>(Func<T1, IExecutor<T2, T3>, T4>)

Creates an execution operator from a delegate.

[Pure]
public static ExecutionOperator<T1, T2, T3, T4> Create<T1, T2, T3, T4>(Func<T1, IExecutor<T2, T3>, T4> operation)

Parameters

operation Func<T1, IExecutor<T2, T3>, T4>

Delegate implementing operator behavior.

Returns

ExecutionOperator<T1, T2, T3, T4>

Execution operator wrapping operation.

Type Parameters

T1
T2
T3
T4

Exceptions

ArgumentNullException

operation is null.