mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
Add missing channel update handlers
This commit is contained in:
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);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user