Click or drag to resize
Akka.NETDispatchersRegisterConfigurator Method
Register a MessageDispatcherConfigurator that will be used by Lookup(String) and HasDispatcher(String) instead of looking up the configurator from the system configuration. This enables dynamic addition of dispatchers.
Remarks
A MessageDispatcherConfigurator for a certain id can only be registered once, i.e. it can not be replaced. It is safe to call this method multiple times, but only the first registration will be used.

Namespace:  Akka.Dispatch
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public bool RegisterConfigurator(
	string id,
	MessageDispatcherConfigurator configurator
)

Parameters

id
Type: SystemString
TBD
configurator
Type: Akka.DispatchMessageDispatcherConfigurator
TBD

Return Value

Type: Boolean
This method returns true if the specified configurator was successfully registered.
See Also