Skip to content

Commit 5ef0b83

Browse files
authored
Update tutorial.md
1 parent 7818416 commit 5ef0b83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/nservicebus-sagas/1-saga-basics/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ What happens when some process is dependent upon *more than one message*?
2020

2121
Let's say a **Shipping** service can't ship an order (that is, send a `ShipOrder` command) until it has successfully received `OrderPlaced` from the **Sales** service *and* `OrderBilled` from the **Billing** service. Normal message handlers don't store any state, so we need a way to keep track of which events have already been received.
2222

23-
In this tutorial, we'll solve this problem by building a simple [**saga**](/nservicebus/sagas/), which is essentially a message-driven state machine, or a collection of message handlers that controll a persisted shared state. Sagas represent a business process where multiple related messages can trigger state changes. Furute lessons in this series will focus on more problems you can solve with sagas, such as integrating with external services or replacing nightly batch jobs with a system that processes changes in real time.
23+
In this tutorial, we'll solve this problem by building a simple [**saga**](/nservicebus/sagas/), which is essentially a message-driven state machine, or a collection of message handlers that controll a persisted shared state. Sagas represent a business process where multiple related messages can trigger state changes. Future lessons in this series will focus on more problems you can solve with sagas, such as integrating with external services or replacing nightly batch jobs with a system that processes changes in real time.
2424

2525
Let's get started building a saga!!
2626

0 commit comments

Comments
 (0)