Optimization : Optimization.Dispatcher.Internal Namespace

Registry Class

Internal dispatcher registry.

public class Registry

Remarks

This class represents a registry of internal dispatchers. This can be used to lookup and create internal dispatchers from name. The registry will automatically collect all types that derive from Optimization.Dispatcher.Internal.Dispatcher.

Requirements

Namespace: Optimization.Dispatcher.Internal
Assembly: Optimization (in Optimization.dll)

Members

See Also: Inherited members from object.

Public Constructors

Default constructor.

Public Properties

[read-only]
static
Dispatchers List<Type> . List of dispatchers.

Public Methods

static
Create (string) : Dispatcher
Create a new dispatcher.

Member Details

Registry Constructor

Default constructor.

public Registry ()

Remarks

Default constructor.

Requirements

Namespace: Optimization.Dispatcher.Internal
Assembly: Optimization (in Optimization.dll)

Create Method

Create a new dispatcher.

public static Dispatcher Create (string name)

Parameters

name
The dispatcher name.

Returns

A new dispatcher.

Remarks

Create a new dispatcher from name. The name will be matched against all types that derive from Optimization.Dispatcher.Internal.Dispatcher.

Requirements

Namespace: Optimization.Dispatcher.Internal
Assembly: Optimization (in Optimization.dll)

Dispatchers Property

List of dispatchers.

public static List<Type> Dispatchers { get; }

Value

List of dispatchers.

Remarks

Get a list of all known dispatcher types.

Requirements

Namespace: Optimization.Dispatcher.Internal
Assembly: Optimization (in Optimization.dll)