QuickOPC User's Guide and Reference
TopicProcessingIntervalTimeout Property (EasyDAClientParameters)



OpcLabs.EasyOpcClassicCore Assembly > OpcLabs.EasyOpc.DataAccess.Engine Namespace > EasyDAClientParameters Class : TopicProcessingIntervalTimeout Property
Topic processing interval timeout. Number of milliseconds. When the incoming requests related to OPC items pause for this interval, the requests collected so far are applied to the OPC server.
Syntax
'Declaration
 
<DataMemberAttribute()>
<DefaultValueAttribute(200)>
Public Property TopicProcessingIntervalTimeout As Integer
'Usage
 
Dim instance As EasyDAClientParameters
Dim value As Integer
 
instance.TopicProcessingIntervalTimeout = value
 
value = instance.TopicProcessingIntervalTimeout
[DataMember()]
[DefaultValue(200)]
public int TopicProcessingIntervalTimeout {get; set;}
[DataMember()]
[DefaultValue(200)]
public:
property int TopicProcessingIntervalTimeout {
   int get();
   void set (    int value);
}
Remarks

The value must be greater than or equal to zero, or it must be equal to System.Threading.Timeout.Infinite.

Normally, incoming requests are logically grouped by the component, and processed according to how the application has structured them. This interval will therefore only have some effect under heavy system load.

This property is used by following client implementations:

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