MessageCreatorRegistry :: RegisterCreator

01 Registers a Message creator.
02

[C++] void RegisterCreator(IMessageCreator const &creator);
[C#] void RegisterCreator(IMessageCreator creator);

03 Parameters:
  • creator: The Message creator to register.
04 There is no way to unregister a creator (because this is not needed). Since the registry is a global singleton, it is expected that the registered creator has the same lifetime.
Generally, a creator has no other purpose than to be the provider for the create method.
05 Reference: net::semys
Implementation: Semys Architecture
See Also: Message Sub-System, MessageCreatorRegistry,

Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details.