FairMQ/fairmq/devices
2021-05-28 13:14:51 +02:00
..
BenchmarkSampler.h Apply modernize-use-default-member-init 2021-05-28 13:14:51 +02:00
Merger.h Apply modernize-use-default-member-init 2021-05-28 13:14:51 +02:00
Multiplier.h Apply modernize-use-default-member-init 2021-05-28 13:14:51 +02:00
Proxy.h Apply modernize-use-default-member-init 2021-05-28 13:14:51 +02:00
README.md builtin devices: Reorganize 2021-03-26 10:06:10 +01:00
runBenchmarkSampler.cxx runDevice: remove const from getDevice parameter 2021-05-13 23:00:35 +02:00
runMerger.cxx runDevice: remove const from getDevice parameter 2021-05-13 23:00:35 +02:00
runMultiplier.cxx runDevice: remove const from getDevice parameter 2021-05-13 23:00:35 +02:00
runProxy.cxx runDevice: remove const from getDevice parameter 2021-05-13 23:00:35 +02:00
runSink.cxx runDevice: remove const from getDevice parameter 2021-05-13 23:00:35 +02:00
runSplitter.cxx runDevice: remove const from getDevice parameter 2021-05-13 23:00:35 +02:00
Sink.h Apply modernize-use-default-member-init 2021-05-28 13:14:51 +02:00
Splitter.h Apply modernize-use-default-member-init 2021-05-28 13:14:51 +02:00
startMQBenchmark.sh.in builtin devices: Reorganize 2021-03-26 10:06:10 +01:00

Generic Devices

With FairMQ several generic devices are provided:

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