Skip to content

Commit f57c47e

Browse files
committed
Move Service Bus article into September leaf bundle
1 parent f04dbc9 commit f57c47e

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

content/articles/2026-09-14-reordering-an-unordered-azure-service-bus-stream-with-powershell.md renamed to content/articles/2026/09/reordering-an-unordered-azure-service-bus-stream-with-powershell/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ The actual script uses typed `SessionOrderingState` and `OrderSeq` objects, rath
127127

128128
First, the producer sends `1`, `3`, and `4`. The reorderer forwards `1`, but it cannot forward `3` or `4`: both depend on the missing `2`. Those two messages are deferred and their sequence numbers are saved.
129129

130-
![Terminal output after orders 3 and 4 have been deferred](/images/articles/service-bus-reordering-deferred.png)
130+
![Terminal output after orders 3 and 4 have been deferred](service-bus-reordering-deferred.png)
131131

132132
The state is now:
133133

@@ -138,11 +138,11 @@ Deferred = [3, 4]
138138

139139
When `2` arrives, the reorderer forwards it and advances `LastSeen` to `2`. It can now retrieve deferred `3` by sequence number. After forwarding `3`, the same check makes `4` contiguous, so the script retrieves and forwards that message too.
140140

141-
![Terminal output showing the ordered result 1, 2, 3, 4](/images/articles/service-bus-reordering-ordered-output.png)
141+
![Terminal output showing the ordered result 1, 2, 3, 4](service-bus-reordering-ordered-output.png)
142142

143143
Here is the complete run:
144144

145-
![Terminal screencast of the reordering example](/images/articles/service-bus-reordering-demo.gif)
145+
![Terminal screencast of the reordering example](service-bus-reordering-demo.gif)
146146

147147
## Running the experiment locally
148148

static/images/articles/service-bus-reordering-deferred.png renamed to content/articles/2026/09/reordering-an-unordered-azure-service-bus-stream-with-powershell/service-bus-reordering-deferred.png

File renamed without changes.

static/images/articles/service-bus-reordering-demo.gif renamed to content/articles/2026/09/reordering-an-unordered-azure-service-bus-stream-with-powershell/service-bus-reordering-demo.gif

File renamed without changes.

static/images/articles/service-bus-reordering-ordered-output.png renamed to content/articles/2026/09/reordering-an-unordered-azure-service-bus-stream-with-powershell/service-bus-reordering-ordered-output.png

File renamed without changes.

0 commit comments

Comments
 (0)