GitXplorerGitXplorer
h

amqp_client

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
227346db88c2ac6cdf0970d8772819009ce57957

Updated to 3.3.5

ppma committed 10 years ago
Unverified
85da3db807a527d3acc9a4aeafb710a125a1609d

Updated to 3.3.4

ppma committed 10 years ago
Unverified
f87783a02ca1764754c0da36f6c33b175977e544

Updated to 3.3.1

ppma committed 11 years ago
Unverified
2b8c2c5a3b647fc4b4733978046305acde611a43

Tweaked rebar config to use the proper repository.

jjbrisbin committed 12 years ago
Unverified
48acd2c08f08569ff069b16abfdb7062e1fe473f

Revert "fix return value in amqp_gen_consumer"

jjlouis committed 12 years ago
Unverified
aed90b652432708718f56ba6f8e3105ae4bd78ec

Revert "fix consumer_died error"

jjlouis committed 12 years ago

README

The README file for this repository.

Rebar-friendly fork of Erlang AMQP client

This is a fork of the official RabbitMQ/AMQP Erlang client.

It's meant to be included in your rebar projects in your rebar.config file:

	{deps, [
		{amqp_client, ".*", {git, "git://github.com/jbrisbin/amqp_client.git", {tag, "rabbitmq-3.0.0"}}}
	]}.

The "master" branch of this port is a simple re-packaging of the rabbit_common AMQP client dependency.

The "community" branch, however, is a port of the RabbitMQ source code with additional strict compilation checking turned on and the source code edited to eliminate warnings. It should be 100% compatible with the unaltered source code. The community branch is simply a tweak to allow projects that depend on rabbit_common to not have to deal with the warnings issued by the compiler in the unaltered RabbitMQ code.

To use the "community" branch in your project, which includes stricter compilation settings, add "-community" to the version tag:

	{deps, [
		{amqp_client, ".*", {git, "git://github.com/jbrisbin/amqp_client.git", {tag, "rabbitmq-3.0.0-community"}}}
	]}.

License

This package, just like the the RabbitMQ server, is licensed under the MPL. For the MPL, please see LICENSE-MPL-RabbitMQ.