Internal dispatcher registry.
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.
Namespace: Optimization.Dispatcher.Internal
Assembly: Optimization (in Optimization.dll)
See Also: Inherited members from object.
⊟ Public Constructors
Registry ()Default constructor. ⊟ Public Properties
[read-only] staticDispatchers List<Type> . List of dispatchers. ⊟ Public Methods
staticCreate (string) : Dispatcher Create a new dispatcher.
⊟ 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)