-
-
Notifications
You must be signed in to change notification settings - Fork 275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Protocol Info objects #170
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
7ba0280
Add examples of RPC clients and servers
fmvilas fac14ac
Merge branch 'master' into feature/protocol-objects
fmvilas e0167fb
Merge branch 'master' into feature/protocol-objects
fmvilas e3e6a8f
Adding to markdown and json-schema specs
fmvilas 785325d
Add it to message object too and fix examples
fmvilas e3866bf
Fix broken link
fmvilas 1597315
Merge branch 'master' into feature/protocol-objects
fmvilas ed391c2
Rename protocolObjects to protocolInfo
fmvilas 43d5819
Rename protocolObjects to protocolInfo in examples
fmvilas 645dd72
Merge branch 'master' into feature/protocol-objects
fmvilas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,70 @@ | ||
asyncapi: '2.0.0' | ||
id: 'urn:rpc:example:client' | ||
defaultContentType: application/json | ||
|
||
info: | ||
title: RPC Client Example | ||
description: This example demonstrates how to define an RPC client. | ||
version: '1.0.0' | ||
|
||
servers: | ||
- url: rabbitmq.example.org | ||
scheme: amqp | ||
|
||
channels: | ||
'{queue}': | ||
parameters: | ||
- name: queue | ||
schema: | ||
type: string | ||
pattern: '^amq\\.gen\\-.+$' | ||
protocolInfo: | ||
amqp-0-9-1: | ||
channelIsQueue: true | ||
queue: | ||
randomName: true | ||
exclusive: true | ||
subscribe: | ||
operationId: receiveSumResult | ||
protocolInfo: | ||
amqp-0-9-1: | ||
noAck: true | ||
message: | ||
correlationId: | ||
location: $message.header#/correlation_id | ||
payload: | ||
type: object | ||
properties: | ||
result: | ||
type: number | ||
examples: | ||
- 7 | ||
|
||
rpc_queue: | ||
protocolInfo: | ||
amqp-0-9-1: | ||
channelIsQueue: true | ||
queue: | ||
durable: false | ||
publish: | ||
operationId: requestSum | ||
protocolInfo: | ||
amqp-0-9-1: | ||
ack: true | ||
message: | ||
protocolInfo: | ||
amqp-0-9-1: | ||
properties: | ||
reply_to: | ||
type: string | ||
correlationId: | ||
location: $message.header#/correlation_id | ||
payload: | ||
type: object | ||
properties: | ||
numbers: | ||
type: array | ||
items: | ||
type: number | ||
examples: | ||
- [4,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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
asyncapi: '2.0.0' | ||
id: 'urn:rpc:example:server' | ||
defaultContentType: application/json | ||
|
||
info: | ||
title: RPC Server Example | ||
description: This example demonstrates how to define an RPC server. | ||
version: '1.0.0' | ||
|
||
servers: | ||
- url: rabbitmq.example.org | ||
scheme: amqp | ||
|
||
channels: | ||
'{queue}': | ||
parameters: | ||
- name: queue | ||
schema: | ||
type: string | ||
pattern: '^amq\\.gen\\-.+$' | ||
protocolInfo: | ||
amqp-0-9-1: | ||
channelIsQueue: true | ||
queue: | ||
randomName: true | ||
exclusive: true | ||
publish: | ||
operationId: sendSumResult | ||
protocolInfo: | ||
amqp-0-9-1: | ||
ack: true | ||
message: | ||
correlationId: | ||
location: $message.header#/correlation_id | ||
payload: | ||
type: object | ||
properties: | ||
result: | ||
type: number | ||
examples: | ||
- 7 | ||
|
||
rpc_queue: | ||
protocolInfo: | ||
amqp-0-9-1: | ||
channelIsQueue: true | ||
queue: | ||
durable: false | ||
subscribe: | ||
operationId: sum | ||
message: | ||
protocolInfo: | ||
amqp-0-9-1: | ||
properties: | ||
reply_to: | ||
type: string | ||
correlationId: | ||
location: $message.header#/correlation_id | ||
payload: | ||
type: object | ||
properties: | ||
numbers: | ||
type: array | ||
items: | ||
type: number | ||
examples: | ||
- [4,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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, ignore the "quality" of the
amqp-0-9-1
object here. The definition of a specific protocol object must be done separately. This example is just to illustrate the feature.