We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70f854b commit 27e26ebCopy full SHA for 27e26eb
1 file changed
README.md
@@ -30,6 +30,8 @@ Remembers the result of arbitrary code:
30
var transactionId = await Capture("TransactionId", () => Guid.NewGuid());
31
//or simply
32
var transactionId = await Capture(Guid.NewGuid);
33
+//can also be used for external calls with automatic retry
34
+await Capture(() => httpClient.PostAsync("https://someurl.com", content), RetryPolicy.Default);
35
```
36
### Messages
37
Wait for retrieval of external message - without taking up resources:
0 commit comments