FairMQ/examples/MQ
Alexey Rybalchenko 7ab6afa28a Remove compile time transport interface switch
- Remove the compile time check of the transport implementation.
  The transport (zeromq/nanomsg) can be chosen at run time with:
  `device.SetTransport("zeromq"); // possible values are "zeromq" and "nanomsg"`.

  For devices that use FairMQProgOptions, the transport can be configured via cmd option:
  `--transport zeromq` or `--transport nanomsg`. Default values is "zeromq".
  The device receives the configured value with:
  `device.SetTransport(config.GetValue<std::string>("transport"));`

  Old method of setting transport still works. But the NANOMSG constant is not defined.

- Remove old `fairmq/prototest` directory. It was only used as a test for protobuf.
  The protobuf part of Tutorial3 does the same (with different values).

- Fix a bug in FairMQPollerNN, where the `revents` value was not initialized.
  This caused the `poller->CheckOutput()` to trigger when it should not.
2018-05-02 16:12:57 +02:00
..
1-sampler-sink Remove compile time transport interface switch 2018-05-02 16:12:57 +02:00
2-sampler-processor-sink Remove compile time transport interface switch 2018-05-02 16:12:57 +02:00
3-dds Remove compile time transport interface switch 2018-05-02 16:12:57 +02:00
4-copypush Remove compile time transport interface switch 2018-05-02 16:12:57 +02:00
5-req-rep Remove compile time transport interface switch 2018-05-02 16:12:57 +02:00
6-multiple-channels Remove compile time transport interface switch 2018-05-02 16:12:57 +02:00
8-multipart Remove compile time transport interface switch 2018-05-02 16:12:57 +02:00