mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-16 18:11:49 +00:00
- Move general config files out of example directory to fairmq/run. - Use FairMQProgOptions for MQ example 5. - Add SendPartAsync() for non-blocking send of a message part.
42 lines
959 B
JSON
42 lines
959 B
JSON
{
|
|
"fairMQOptions":
|
|
{
|
|
"device":
|
|
{
|
|
"id": "client",
|
|
"channel":
|
|
{
|
|
"name": "data",
|
|
"socket":
|
|
{
|
|
"type": "req",
|
|
"method": "connect",
|
|
"address": "tcp://localhost:5005",
|
|
"sndBufSize": "1000",
|
|
"rcvBufSize": "1000",
|
|
"rateLogging": "0"
|
|
}
|
|
}
|
|
},
|
|
|
|
"device":
|
|
{
|
|
"id": "server",
|
|
"channel":
|
|
{
|
|
"name": "data",
|
|
"socket":
|
|
{
|
|
"type": "rep",
|
|
"method": "bind",
|
|
"address": "tcp://*:5005",
|
|
"sndBufSize": "1000",
|
|
"rcvBufSize": "1000",
|
|
"rateLogging": "0"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|