File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -26,21 +26,23 @@ There are two flavors of this solution:
26
26
- The returned resource is the targeted resource and includes the status of
27
27
the operation. This pattern is often called RELO (resource-based
28
28
long running operation).
29
- //image
29
+
30
30
<!-- markdownlint-disable MD033 -->
31
31
<p align =" center " >
32
32
<img src =" RELO.gif " alt =" The status monitor LRO flow " />
33
33
</p >
34
34
<!-- markdownlint-enable MD033 -->
35
+
35
36
- The returned resource is a new API resource called 'Stepwise Operation' and
36
37
is created to track the status. This LRO solution is similar to the concept
37
38
of Promises or Futures in other programming languages.
38
- //image
39
+
39
40
<!-- markdownlint-disable MD033 -->
40
41
<p align =" center " >
41
42
<img src =" LRO.gif " alt =" The status monitor LRO flow " />
42
43
</p >
43
44
<!-- markdownlint-enable MD033 -->
45
+
44
46
The RELO pattern is the preferred pattern for long running operations and should be
45
47
used wherever possible. The pattern avoids complexity, and consistent resource
46
48
presentation makes things simpler for our users and tooling chain.
You can’t perform that action at this time.
0 commit comments