mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-12-15 07:20:17 +00:00
Add missing channel update handlers
This commit is contained in:
committed by
Dennis Klein
parent
cbab7649be
commit
3561255cf9
@@ -346,6 +346,18 @@ int FairMQProgOptions::UpdateChannelValue(const string& channelName, int index,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (member == "sndKernelSize")
|
||||||
|
{
|
||||||
|
fFairMQChannelMap.at(channelName).at(index).UpdateSndKernelSize(val);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (member == "rcvKernelSize")
|
||||||
|
{
|
||||||
|
fFairMQChannelMap.at(channelName).at(index).UpdateRcvKernelSize(val);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (member == "linger")
|
if (member == "linger")
|
||||||
{
|
{
|
||||||
fFairMQChannelMap.at(channelName).at(index).UpdateLinger(val);
|
fFairMQChannelMap.at(channelName).at(index).UpdateLinger(val);
|
||||||
|
|||||||
Reference in New Issue
Block a user