Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

a.) remove the '--' from the beginning of the option.
b.) if the option takes a value, place a '=' between the option and the value (use yes or true to enable options that take no value when specified on the command line).
c.) place one option per line.

For instance, the --daemon option takes no value, the --log-to-syslog option takes the values yes or no. The following configuration file sets these two options:

Code Block
daemon=yes
log-to-syslog=yes

Can I use any Language client with the C++ Broker?

Yes, all the clients work with the C++ broker; it is written in C++, but uses the AMQP wire protocol. Any broker can be used with any client that uses the same AMQP version. When running the C++ broker, it is highly recommended to run AMQP 0-10.

...