C/C++ binding for Rust AMQP Worker

Based on rsamqpworker.

Build Status Coverage Status

Build

To build the rust application bash cargo build

To build the provided worker example bash gcc -c -Wall -Werror -fpic worker.cpp gcc -shared -o libworker.so worker.o

Test

To run the unit tests, you must build the provided worker example (see the Build section above). bash cargo test

Usage

This worker uses Rust FFI to load a C/C++ Shared Object library, and to execute it. The C/C++ worker must implement some functions to be correctly bound:

For more details, see the provided worker.cpp example.

Set the WORKER_LIBRARY_FILE environment variable to specify the path of your C/C++ worker shared-library. Otherwise, the libworker.so file will be loaded by default.