mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
- Add shared memory example in examples/MQ/SharedMemory - Device/Task termination: try soft first, and abort if it fails - Interactive mode: prevent cin from blocking forever (poll)
41 lines
977 B
JSON
41 lines
977 B
JSON
{
|
|
"fairMQOptions":
|
|
{
|
|
"device":
|
|
{
|
|
"id": "bsampler1",
|
|
"channel":
|
|
{
|
|
"name": "data-out",
|
|
"socket":
|
|
{
|
|
"type": "push",
|
|
"method": "bind",
|
|
"address": "tcp://127.0.0.1:5555",
|
|
"sndBufSize": "1000",
|
|
"rcvBufSize": "1000",
|
|
"rateLogging": "1"
|
|
}
|
|
}
|
|
},
|
|
"device":
|
|
{
|
|
"id": "sink1",
|
|
"channel":
|
|
{
|
|
"name": "data-in",
|
|
"socket":
|
|
{
|
|
"type": "pull",
|
|
"method": "connect",
|
|
"address": "tcp://127.0.0.1:5555",
|
|
"sndBufSize": "1000",
|
|
"rcvBufSize": "1000",
|
|
"rateLogging": "1"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|