FairMQ/examples/MQ/5-req-rep/ex5-req-rep.json
2018-05-02 16:12:57 +02:00

40 lines
901 B
JSON

{
"fairMQOptions":
{
"devices":
[{
"id": "client",
"channels":
[{
"name": "data",
"sockets":
[{
"type": "req",
"method": "connect",
"address": "tcp://localhost:5005",
"sndBufSize": 1000,
"rcvBufSize": 1000,
"rateLogging": 0
}]
}]
},
{
"id": "server",
"channels":
[{
"name": "data",
"sockets":
[{
"type": "rep",
"method": "bind",
"address": "tcp://*:5005",
"sndBufSize": 1000,
"rcvBufSize": 1000,
"rateLogging": 0
}]
}]
}]
}
}