OPC Studio User's Guide and Reference
ParallelPolling Property



OpcLabs.ServerOpcUA Assembly > OpcLabs.EasyOpc.UA.Engine Namespace > EasyUAServerInstanceParameters Class : ParallelPolling Property
Determines whether the server is allowed to poll for the monitored items in parallel.
Syntax
'Declaration
 
Public Property ParallelPolling As Boolean
'Usage
 
Dim instance As EasyUAServerInstanceParameters
Dim value As Boolean
 
instance.ParallelPolling = value
 
value = instance.ParallelPolling
public bool ParallelPolling {get; set;}
public:
property bool ParallelPolling {
   bool get();
   void set (    bool value);
}

Property Value

true if parallel polling is enabled; otherwise, false. The default is DefaultParallelPolling.

The default value of this property is True.

Remarks

Enabling parallel polling (the default) can improve performance by allowing simultaneous polling of multiple items. However, it may also increase resource utilization.

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also