Files
FairMQ/examples/MQ/4-copypush/ex4-copypush.json
2018-05-02 13:51:55 +02:00

64 lines
1.6 KiB
JSON

{
"fairMQOptions":
{
"devices":
[{
"id": "sampler1",
"channels":
[{
"name": "data",
"sockets":
[{
"type": "push",
"method": "bind",
"address": "tcp://*:5555",
"sndBufSize": 1000,
"rcvBufSize": 1000,
"rateLogging": 0
},
{
"type": "push",
"method": "bind",
"address": "tcp://*:5556",
"sndBufSize": 1000,
"rcvBufSize": 1000,
"rateLogging": 0
}]
}]
},
{
"id": "sink1",
"channels":
[{
"name": "data",
"sockets":
[{
"type": "pull",
"method": "connect",
"address": "tcp://localhost:5555",
"sndBufSize": 1000,
"rcvBufSize": 1000,
"rateLogging": 0
}]
}]
},
{
"id": "sink2",
"channels":
[{
"name": "data",
"sockets":
[{
"type": "pull",
"method": "connect",
"address": "tcp://localhost:5556",
"sndBufSize": 1000,
"rcvBufSize": 1000,
"rateLogging": 0
}]
}]
}]
}
}