Skip to content

Commit

Permalink
small edits
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni committed Aug 17, 2023
1 parent 500adfc commit bf39055
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/docs/tutorials/getting-started/request-reply.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ operations:

# Sub-patterns in request/reply

In the simple example above we saw how you could set up a request/reply pattern across two applications, where the request/reply happened over the same channel `/` on an unknown server and protocol, which could have been HTTP, Kafka or WebSocket, in this simple example it does not really matter, cause the only difference would be how the server information is defined.
In the simple example above we saw how you could set up a request/reply pattern across two applications, where the request/reply happened over the same channel `/` on an unknown server and protocol, which could have been HTTP, Kafka, or WebSocket, in this simple example it does not matter, cause the only difference would be how the server information is defined.

However, there are sub-patterns to request/reply that AsyncAPI v3 supports, let's take a look at them.

Expand Down Expand Up @@ -136,7 +136,7 @@ operations:

A second sub-pattern is where we do not know the reply channel at design time, but instead, it's dynamic and determined at runtime. This could for example be using the request message payload or header to dictate the response channel.

Take notice how we utilize `address: null` to define that we don't know the address. This is just for illustration purpose as you can also omit the property entirely.
Take notice how we utilize `address: null` to define that we don't know the address. This is just for illustration purposes as you can also omit the property entirely.

```yml
asyncapi: 3.0.0
Expand Down

0 comments on commit bf39055

Please sign in to comment.