Skip to content

Commit bee28e5

Browse files
author
Travis Nickels
committed
Update links
1 parent c655f92 commit bee28e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nservicebus/upgrades/azure-functions-service-bus-in-process-isolated-worker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,13 @@ class HttpSender
151151

152152
It's important to be able to maintain the consistency guarantees that were previously available in the in-process model when using `SendsAtomicWithReceive`. To achieve this, there are a few options:
153153

154-
1. **Implement the [Outbox pattern](https://docs.particular.net/architecture/consistency#transactions-outbox-pattern)** to simulate atomic transactions. (Recommended)
155-
2. Ensure that all receiver message handlers are [idempotent](https://docs.particular.net/architecture/consistency#idempotency).
154+
1. **Implement the [Outbox pattern](/architecture/consistency.md#transactions-outbox-pattern)** to simulate atomic transactions. (Recommended)
155+
2. Ensure that all receiver message handlers are [idempotent](/architecture/consistency.md#idempotency).
156156
3. Ensure that the system infrastructure guarantees consistency between business data and messages.
157157

158158
### Using SendsAtomicWithReceive in the In-Process model
159159

160-
In the in-process model, `SendsAtomicWithReceive` could be enabled by setting a boolean value in the assembly attribute:
160+
In the in-process model, `SendsAtomicWithReceive` could be enabled by setting a boolean value to true in the assembly attribute:
161161

162162
```csharp
163163
[assembly: NServiceBusTriggerFunction("ASBFunctionEndpoint", SendsAtomicWithReceive = true)]

0 commit comments

Comments
 (0)