tile38/vendor/github.com/streadway/amqp
tidwall cfc65a13f6 Refactor repository and build scripts
This commit includes updates that affects the build, testing, and
deployment of Tile38.

- The root level build.sh has been broken up into multiple scripts
  and placed in the "scripts" directory.

- The vendor directory has been updated to follow the Go modules
  rules, thus `make` should work on isolated environments. Also
  some vendored packages may have been updated to a later
  version, if needed.

- The Makefile has been updated to allow for making single
  binaries such as `make tile38-server`. There is some scaffolding
  during the build process, so from now on all binaries should be
  made using make. For example, to run a development version of
  the tile38-cli binary, do this:
     make tile38-cli && ./tile38-cli
  not this:
     go run cmd/tile38-cli/main.go

- Travis.CI docker push script has been updated to address a
  change to Docker's JSON repo meta output, which in turn fixes
  a bug where new Tile38 versions were not being properly pushed
  to Docker
2019-11-18 10:33:15 -07:00
..
.gitignore Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
.travis.yml Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
CONTRIBUTING.md Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
LICENSE Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
README.md Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
allocator.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
auth.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
certs.sh Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
channel.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
confirms.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
connection.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
consumers.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
delivery.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
doc.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
fuzz.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
gen.sh Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
pre-commit Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
read.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
return.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
spec091.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
types.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
uri.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00
write.go Refactor repository and build scripts 2019-11-18 10:33:15 -07:00

README.md

Build Status GoDoc

Go RabbitMQ Client Library

This is an AMQP 0.9.1 client with RabbitMQ extensions in Go.

Project Maturity

This project has been used in production systems for many years. It is reasonably mature and feature complete, and as of November 2016 has a team of maintainers.

Future API changes are unlikely but possible. They will be discussed on Github issues along with any bugs or enhancements.

Supported Go Versions

This library supports two most recent Go release series, currently 1.8 and 1.9.

Supported RabbitMQ Versions

This project supports RabbitMQ versions starting with 2.0 but primarily tested against reasonably recent 3.x releases. Some features and behaviours may be server version-specific.

Goals

Provide a functional interface that closely represents the AMQP 0.9.1 model targeted to RabbitMQ as a server. This includes the minimum necessary to interact the semantics of the protocol.

Non-goals

Things not intended to be supported.

  • Auto reconnect and re-synchronization of client and server topologies.
    • Reconnection would require understanding the error paths when the topology cannot be declared on reconnect. This would require a new set of types and code paths that are best suited at the call-site of this package. AMQP has a dynamic topology that needs all peers to agree. If this doesn't happen, the behavior is undefined. Instead of producing a possible interface with undefined behavior, this package is designed to be simple for the caller to implement the necessary connection-time topology declaration so that reconnection is trivial and encapsulated in the caller's application code.
  • AMQP Protocol negotiation for forward or backward compatibility.
    • 0.9.1 is stable and widely deployed. Versions 0.10 and 1.0 are divergent specifications that change the semantics and wire format of the protocol. We will accept patches for other protocol support but have no plans for implementation ourselves.
  • Anything other than PLAIN and EXTERNAL authentication mechanisms.
    • Keeping the mechanisms interface modular makes it possible to extend outside of this package. If other mechanisms prove to be popular, then we would accept patches to include them in this package.

Usage

See the 'examples' subdirectory for simple producers and consumers executables. If you have a use-case in mind which isn't well-represented by the examples, please file an issue.

Documentation

Use Godoc documentation for reference and usage.

RabbitMQ tutorials in Go are also available.

Contributing

Pull requests are very much welcomed. Create your pull request on a non-master branch, make sure a test or example is included that covers your change and your commits represent coherent changes that include a reason for the change.

To run the integration tests, make sure you have RabbitMQ running on any host, export the environment variable AMQP_URL=amqp://host/ and run go test -tags integration. TravisCI will also run the integration tests.

Thanks to the community of contributors.

External packages

License

BSD 2 clause - see LICENSE for more details.