IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Specifies the interval at which the host sends data to the device to prevent that a firewall blocks the communication on the message channel. If GevMessageChannelSenderInterval is set to 0, no data is sent to the device.
Name |
GevMessageChannelSenderInterval |
Category |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
ms |
Visibility |
Expert |
Values |
unsigned int 4-byte Increment: 100 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code Example
C++
// Determine the current GevMessageChannelSenderInterval
int64_t value = nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("GevMessageChannelSenderInterval")->Value();
// Set GevMessageChannelSenderInterval to 5000 ms
nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("GevMessageChannelSenderInterval")->SetValue(5000);
C#
// Determine the current GevMessageChannelSenderInterval
long value = nodeMapLocalDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("GevMessageChannelSenderInterval").Value();
// Set GevMessageChannelSenderInterval to 5000 ms
nodeMapLocalDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("GevMessageChannelSenderInterval").SetValue(5000);
Python
# Determine the current GevMessageChannelSenderInterval (int)
value = nodeMapLocalDevice.FindNode("GevMessageChannelSenderInterval").Value()
# Set GevMessageChannelSenderInterval to 5000 ms (int)
nodeMapLocalDevice.FindNode("GevMessageChannelSenderInterval").SetValue(5000)