2
2
title : AMQP 1.0 request/response operations in Azure Service Bus
3
3
description : This article defines the list of AMQP request/response-based operations in Microsoft Azure Service Bus.
4
4
ms.topic : article
5
- ms.date : 09/27/2021
5
+ ms.date : 12/20/2022
6
6
---
7
7
8
8
# AMQP 1.0 in Microsoft Azure Service Bus: request-response-based operations
@@ -50,7 +50,7 @@ role: RECEIVER,
50
50
### Transfer a request message
51
51
52
52
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 .
54
54
55
55
```
56
56
requestLink.sendTransfer(
@@ -547,21 +547,22 @@ The response message includes the following properties:
547
547
| Key| Value Type| Required| Value Contents|
548
548
| ---------| ----------------| --------------| --------------------|
549
549
| 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.|
551
551
552
- Each map entry in the array includes the following properties:
552
+ Each map entry in the list includes the following properties:
553
553
554
554
| Key| Value Type| Required| Value Contents|
555
555
| ---------| ----------------| --------------| --------------------|
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|
557
557
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 :
559
559
560
560
| Index| Value Type| Required| Value Contents|
561
561
| ---------| ----------------| --------------| --------------------|
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 . |
564
564
| 2 | string | Yes | name of the rule. |
565
+ | 3 | timestamp | Yes | time stamp. |
565
566
566
567
` filter ` can be of either of the following types:
567
568
@@ -572,13 +573,13 @@ Each map entry in the array includes the following properties:
572
573
| ` com.microsoft:true-filter:list ` | 0x000001370000007 | True filter representing 1=1 |
573
574
| ` com.microsoft:false-filter:list ` | 0x000001370000008 | False filter representing 1=0 |
574
575
575
- ` com.microsoft:sql-filter:list ` is a described array which includes:
576
+ ` com.microsoft:sql-filter:list ` is a described list, which includes:
576
577
577
578
| Index| Value Type| Required| Value Contents|
578
579
| ---------| ----------------| --------------| --------------------|
579
580
| 0 | string | Yes | Sql Filter expression |
580
581
581
- ` com.microsoft:correlation-filter:list ` is a described array which includes:
582
+ ` com.microsoft:correlation-filter:list ` is a described list, which includes:
582
583
583
584
| Index (if exists)| Value Type| Value Contents|
584
585
| ---------| ----------------| --------------|
@@ -599,7 +600,7 @@ Each map entry in the array includes the following properties:
599
600
| ` com.microsoft:empty-rule-action:list ` | 0x0000013700000005 | Empty Rule Action - No rule action present |
600
601
| ` com.microsoft:sql-rule-action:list ` | 0x0000013700000006 | SQL Rule Action |
601
602
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.
603
604
604
605
## Deferred message operations
605
606
0 commit comments