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

43 lines
1.3 KiB
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
}
]
}
]
}
]
}
}