Skip to content
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

fix: producer page wrong link #1081

Merged
merged 6 commits into from
Nov 7, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions pages/docs/concepts/channel.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,19 @@ graph LR
C --> F[Consumer]
```
The diagram above shows the communication between a `producer` and `consumer`, with the producer sending a `message` through the `channel`. The channel then queues the message to the specific consumer.


<DocsButton
suggestions={[
{
href:'/docs/concepts/consumer',
type: 'back',
title: 'Consumer',
},
{
href:'/docs/tutorials',
type: 'next',
title: 'Tutorials - Overview',
}
]}
/>
19 changes: 18 additions & 1 deletion pages/docs/concepts/consumer.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,25 @@ flowchart LR
f
end
```
The above diagram depicts a sample flow of events from `producer` to `broker` to `consumer`. In this instance, the `producer` publishes two events _(A and B)_ and sends them to the `broker`. Then each `consumer` subscribes to receive those events.

The above diagram depicts a sample flow of events from `producer` to `broker` to `consumer`. In this instance, the `producer` publishes two events _(A and B)_ and sends them to the `broker`. Then each `consumer` subscribes to receive those events.
<Remember>
<b>Subscribers</b> can also be <a href="https://www.asyncapi.com/docs/concepts/producer">producers</a>.
</Remember>
---


<DocsButton
suggestions={[
{
href:'/docs/concepts/producer',
type: 'back',
title: 'Producer',
},
{
href:'/docs/concepts/channel',
type: 'next',
title: 'Channel',
}
]}
/>
4 changes: 2 additions & 2 deletions pages/docs/concepts/producer.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ In the diagram above, we see a producer publishing messages to a specific channe
title: 'Server',
},
{
href:'/docs/tutorials',
href:'/docs/concepts/consumer',
type: 'next',
title: 'Tutorials - Overview',
title: 'Consumer',
}
]}
/>
4 changes: 2 additions & 2 deletions pages/docs/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ Tag me in your AsyncAPI Doc PRs or [GitHub Discussions](https://github.com/async
<DocsButton
suggestions={[
{
href:'/docs/concepts/producer',
href:'/docs/concepts/channel',
type: 'back',
title: 'Concepts - Producer',
title: 'Channel',
akshatnema marked this conversation as resolved.
Show resolved Hide resolved
},
{
href:'/docs/tutorials/getting-started',
Expand Down