Specifies the number of USB transfer requests to simultaneously load into the stream channel pipe.
Name |
U3vStreamChannelTransferRequestCount |
Category |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
- |
Visibility |
Guru |
Values |
1 …6 Increment: 1 Default: 6 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Determine the current U3vStreamChannelTransferRequestCount
int64_t value = nodeMapDataStream->FindNode<peak::core::nodes::IntegerNode>("U3vStreamChannelTransferRequestCount")->Value();
// Set U3vStreamChannelTransferRequestCount to 5
nodeMapDataStream->FindNode<peak::core::nodes::IntegerNode>("U3vStreamChannelTransferRequestCount")->SetValue(5);
C#
// Determine the current U3vStreamChannelTransferRequestCount
long value = nodeMapDataStream.FindNode<peak.core.nodes.IntegerNode>("U3vStreamChannelTransferRequestCount").Value();
// Set U3vStreamChannelTransferRequestCount to 5
nodeMapDataStream.FindNode<peak.core.nodes.IntegerNode>("U3vStreamChannelTransferRequestCount").SetValue(5);
Python
# Determine the current U3vStreamChannelTransferRequestCount (int)
value = nodeMapDataStream.FindNode("U3vStreamChannelTransferRequestCount").Value()
# Set U3vStreamChannelTransferRequestCount to 5 (int)
nodeMapDataStream.FindNode("U3vStreamChannelTransferRequestCount").SetValue(5)