Skip to content

Commit ec384ad

Browse files
Merge pull request #222002 from spelluru/sbusamqp1220
updated based on Git issue feedback
2 parents 901115d + 9bf3903 commit ec384ad

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

articles/service-bus-messaging/service-bus-amqp-request-response.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: AMQP 1.0 request/response operations in Azure Service Bus
33
description: This article defines the list of AMQP request/response-based operations in Microsoft Azure Service Bus.
44
ms.topic: article
5-
ms.date: 09/27/2021
5+
ms.date: 12/20/2022
66
---
77

88
# AMQP 1.0 in Microsoft Azure Service Bus: request-response-based operations
@@ -50,7 +50,7 @@ role: RECEIVER,
5050
### Transfer a request message
5151

5252
Transfers a request message.
53-
A transaction-state can be added optionally for operations which supports transaction.
53+
A transaction-state can be added optionally for operations that support transactions.
5454

5555
```
5656
requestLink.sendTransfer(
@@ -547,21 +547,22 @@ The response message includes the following properties:
547547
|Key|Value Type|Required|Value Contents|
548548
|---------|----------------|--------------|--------------------|
549549
|statusCode|int|Yes|HTTP response code [RFC2616]<br /><br /> 200: OK – success, otherwise failed|
550-
|rules| array of map|Yes|Array of rules. Each rule is represented by a map.|
550+
|rules| list of maps |Yes| List of rules. Each rule is represented by a map.|
551551

552-
Each map entry in the array includes the following properties:
552+
Each map entry in the list includes the following properties:
553553

554554
|Key|Value Type|Required|Value Contents|
555555
|---------|----------------|--------------|--------------------|
556-
|rule-description|array of described objects|Yes|`com.microsoft:rule-description:list` with AMQP described code 0x0000013700000004|
556+
|rule-description| described object |Yes|`com.microsoft:rule-description` with AMQP described code 0x0000013700000004|
557557

558-
`com.microsoft.rule-description:list` is an array of described objects. The array includes the following:
558+
`com.microsoft.rule-description` itself is a desired object. It has the following properties:
559559

560560
|Index|Value Type|Required|Value Contents|
561561
|---------|----------------|--------------|--------------------|
562-
| 0 | array of described objects | Yes | `filter` as specified below. |
563-
| 1 | array of described object | Yes | `ruleAction` as specified below. |
562+
| 0 | list of described objects | Yes | `filter` as specified in the next table. |
563+
| 1 | list of described objects | Yes | `ruleAction` as specified later in this section. |
564564
| 2 | string | Yes | name of the rule. |
565+
| 3 | timestamp | Yes | time stamp. |
565566

566567
`filter` can be of either of the following types:
567568

@@ -572,13 +573,13 @@ Each map entry in the array includes the following properties:
572573
| `com.microsoft:true-filter:list` | 0x000001370000007 | True filter representing 1=1 |
573574
| `com.microsoft:false-filter:list` | 0x000001370000008 | False filter representing 1=0 |
574575

575-
`com.microsoft:sql-filter:list` is a described array which includes:
576+
`com.microsoft:sql-filter:list` is a described list, which includes:
576577

577578
|Index|Value Type|Required|Value Contents|
578579
|---------|----------------|--------------|--------------------|
579580
| 0 | string | Yes | Sql Filter expression |
580581

581-
`com.microsoft:correlation-filter:list` is a described array which includes:
582+
`com.microsoft:correlation-filter:list` is a described list, which includes:
582583

583584
|Index (if exists)|Value Type|Value Contents|
584585
|---------|----------------|--------------|
@@ -599,7 +600,7 @@ Each map entry in the array includes the following properties:
599600
| `com.microsoft:empty-rule-action:list` | 0x0000013700000005 | Empty Rule Action - No rule action present |
600601
| `com.microsoft:sql-rule-action:list` | 0x0000013700000006 | SQL Rule Action |
601602

602-
`com.microsoft:sql-rule-action:list` is an array of described objects whose first entry is a string which contains the SQL rule action's expression.
603+
`com.microsoft:sql-rule-action:list` is a list of described objects whose first entry is a string, which contains the SQL rule action's expression.
603604

604605
## Deferred message operations
605606

0 commit comments

Comments
 (0)