Enum SymbolLoadingMode
Enumerates way the symbols will be loaded from the PLC.
Namespace: Vortex.Adapters.Connector.Tc3.Adapter
Assembly: Vortex.Adapters.Connector.Tc3.dll
Syntax
public enum SymbolLoadingMode
Fields
Name | Description |
---|---|
AfterConnectorConstruction | The symbols are loaded and linked when the connector is created. noteThis mode considerably slows down the start of the application. All symbols are loaded and linked regardless the usage by the application. |
LoadAndLinkOnTheFly | The symbols are loaded and linked when first time required by the application. noteThis is the fastest way of starting up the application. The symbol loading and linking are performed in a lazily during the application life time. |
PreLoadSymbolsLinkOnTheFly | The symbols are loaded but not linked. Linking is deferred at the first symbol use during the life time of the application. noteThis mode slows down the start up of the application. All symbols are loaded regardless the usage by the application. |