FairMQ/fairmq/devices
2019-07-10 19:35:18 +02:00
..
FairMQBenchmarkSampler.cxx Add config plugin class. 2019-07-10 19:35:18 +02:00
FairMQBenchmarkSampler.h Add example/test for built-in devices 2018-10-18 21:33:47 +02:00
FairMQMerger.cxx Add config plugin class. 2019-07-10 19:35:18 +02:00
FairMQMerger.h Formatting 2019-02-25 12:19:50 +01:00
FairMQMultiplier.cxx Add config plugin class. 2019-07-10 19:35:18 +02:00
FairMQMultiplier.h Formatting 2019-02-25 12:19:50 +01:00
FairMQProxy.cxx Add config plugin class. 2019-07-10 19:35:18 +02:00
FairMQProxy.h Formatting 2019-02-25 12:19:50 +01:00
FairMQSink.h Add config plugin class. 2019-07-10 19:35:18 +02:00
FairMQSplitter.cxx Add config plugin class. 2019-07-10 19:35:18 +02:00
FairMQSplitter.h Formatting 2019-02-25 12:19:50 +01:00
README.md Add docs for common devices 2017-08-30 08:38:00 +02:00

Generic Devices

With FairMQ several generic devices are provided:

  • FairMQBenchmarkSampler: generates random data of configurable size and at configurable rate and sends it out on an output channel.
  • FairMQSink: receives messages on the input channel and simply discards them.
  • FairMQMerger: receives data from multiple input channels and forwards it to a single output channel.
  • FairMQSplitter: receives messages on a single input channels and round-robins them among multiple output channels (which can have different socket types).
  • FairMQMultiplier: receives data from a single input channel and multiplies (copies) it to two or more output channels.
  • FairMQProxy: connects input channel to output channel, where both can have different socket types and multiple peers.