An action chain captures a sequence of actions to be performed as part of a complex multi-part process.

Namespace:  Gallio.Common
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.459.0)

Syntax

C#
public class ActionChain<T>
Visual Basic (Declaration)
Public Class ActionChain(Of T)

Type Parameters

T
The action argument type.

Remarks

Later actions in a chain will not run if prior ones throw an exception. To catch and handle exceptions, use Around(ActionDecorator<(Of <(T>)>)) to register a decorator that runs around the current action whose execution is then under your control.

Inheritance Hierarchy

System..::.Object
  Gallio.Common..::.ActionChain<(Of <(T>)>)

See Also