Click or drag to resize

cDbClasscPrefetchLevel Enumeration

Specifies whether the class instances should be prefetched on the background when connecting to a datasource

Namespace: ABB.Vtrin
Assembly: VtrinLib (in VtrinLib.dll) Version: 530.2607.2220.0 (RTDB_main)
Syntax
public enum cPrefetchLevel
Members
Member nameValueDescription
Disabled0 
ClassDefinitionToClient1 Class defintions are sent to client when establishing connection
InstancesToServerCache2 Same as ClassDefinitionToClient, but also asynchronously prefetches all the instances to server's cache provided that the class is cacheable
InstancesToClientCache4 Same as InstancesToServerCache, but also asynchronously prefetches all the instances to client's cache provided that the class is cacheable
LevelMask15 And with this to get the level part of the prefetch level
PriorityMask240 And with this to get the priority part of the prefetch level (greater priorities are loaded first)
See Also