Files
FairMQ/examples/MQ/1-sampler-sink/ex1-sampler-sink.json
winckler 9a6e7f7aaf enable object array parsing in JSON parser for devices, channels, and sockets.
device, channel, and socket are parsed as before
2018-05-02 13:51:55 +02:00

41 lines
947 B
JSON

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