This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
113 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1 @@ | ||
# Changelog | ||
|
||
## [0.1.6] - 2018-03-02 | ||
### Added | ||
- Required project configuration to publish on [hex.pm](hex.pm) @mkorszun. | ||
|
||
## [0.1.5] - 2018-02-28 | ||
### Added | ||
- Possibility to control concurrency in consumer @mkorszun. | ||
- Possibility to make `app_id` configurable for publisher @mkorszun. | ||
- Better `ExDoc` documentation | ||
|
||
### Fixed | ||
- If `queue_ttl` specified it also applies to dead letter queue @mkorszun. | ||
- Default `routing_key` on publish | ||
|
||
## [0.1.4] - 2018-02-06 | ||
### Added | ||
- Possibility to specify queue ttl in consumer config @mkorszun. | ||
|
||
## [0.1.3] - 2018-01-31 | ||
### Added | ||
- Processor behaviour @mkorszun. | ||
### Removed | ||
- Unused test helper functions @mkorszun. | ||
|
||
[0.1.6]: https://github.com/meltwater/gen_amqp/compare/v0.1.5...v0.1.6 | ||
[0.1.5]: https://github.com/meltwater/gen_amqp/compare/v0.1.4...v0.1.5 | ||
[0.1.4]: https://github.com/meltwater/gen_amqp/compare/v0.1.3...v0.1.4 | ||
[0.1.3]: https://github.com/meltwater/gen_amqp/compare/v0.1.2...v0.1.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
defmodule GenAMQP.Processor do | ||
defmodule GenRMQ.Processor do | ||
@moduledoc """ | ||
Defines functions to implement by any AMQP processor | ||
""" | ||
@callback process(message :: GenAMQP.Message.t()) :: :ok | {:error, Any.t()} | ||
@callback process(message :: GenRMQ.Message.t()) :: :ok | {:error, Any.t()} | ||
end |
Oops, something went wrong.