-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3.1 enhancesments and message handling refinement
- More message properties and attributes now supported - Body/Message encoding is now configurable at runtime at construction - Supported Encodings: - base64 - utf-8 - This provides and future entry point for mesage encryption support - routing_key now works - added new message properties: - correlation_id - reply_to
- Loading branch information
Showing
12 changed files
with
238 additions
and
80 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"body": "eyJleHBpcmVzIjogbnVsbCwgInV0YyI6IHRydWUsICJhcmdzIjogWzIsIDJdLCAiY2hvcmQiOiBudWxsLCAiY2FsbGJhY2tzIjogbnVsbCwgImVycmJhY2tzIjogbnVsbCwgInRhc2tzZXQiOiBudWxsLCAiaWQiOiAiNjJlODMzMTYtMTg1Ny00N2ZmLTkyNzYtNmQ5MzRiZjhhNjBlIiwgInJldHJpZXMiOiAwLCAidGFzayI6ICJwcmVkaXMuYWRkIiwgInRpbWVsaW1pdCI6IFtudWxsLCBudWxsXSwgImV0YSI6IG51bGwsICJrd2FyZ3MiOiB7fX0=", | ||
"headers": {}, | ||
"content-type": "application/json", | ||
"properties": { | ||
"body_encoding": "base64", | ||
"correlation_id": "62e83316-1857-47ff-9276-6d934bf8a60e", | ||
"reply_to": "d6422edb-425a-3b86-86d8-fb1112a10a54", | ||
"delivery_info": { | ||
"priority": 0, | ||
"routing_key": "celery", | ||
"exchange": "celery" | ||
}, | ||
"delivery_mode": 2, | ||
"delivery_tag": 2 | ||
}, | ||
"content-encoding": "utf-8" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"body": "ddd==", | ||
"headers": [], | ||
"content_type": "application/json", | ||
"properties": { | ||
"correlation_id": "6cca25f2-5fa8-11e3-904c-e4ce8f2261f0", | ||
"reply_to": "6cca25f2-5fa8-11e3-904c-e4ce8f2261f0", | ||
"body_encoding": "base64", | ||
"name": "celery", | ||
"delivery_info": { | ||
"priority": 0, | ||
"routing_key": "celery", | ||
"exchange": "celery" | ||
}, | ||
"durable": true, | ||
"delivery_mode": 2, | ||
"delivery_tag": 2 | ||
}} |
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
Oops, something went wrong.