Skip to content

Commit 742f912

Browse files
committed
Add README and releasenotes
1 parent 2c46deb commit 742f912

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

src/Client/OrchestrationServiceClientShim/README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,15 @@ Commonly used types:
44
- `ShimDurableTaskClient`
55
- `ShimDurableTaskClientOptions`
66

7-
For more information, see https://github.com/microsoft/durabletask-dotnet
7+
For more information, see https://github.com/microsoft/durabletask-dotnet
8+
9+
## Getting Started
10+
11+
``` CSharp
12+
HostApplicationBuilder builder = Host.CreateApplicationBuilder(args);
13+
14+
// instantiate this using existing Microsoft.Azure.DurableTask packages.
15+
IOrchestrationServiceClient orchestrationServiceClient = new AzureStorageOrchestrationService(...);
16+
builder.Services.AddDurableTaskClient()
17+
.UseOrchestrationService(orchestrationService);
18+
```

src/Worker/Core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Commonly used types:
55
- `DurableTaskWorkerOptions`
66
- `IDurableTaskWorkerBuilder`
77

8-
For more information, see https://github.com/microsoft/durabletask-dotnet
8+
For more information, see https://github.com/microsoft/durabletask-dotnet
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
A client implementation for `Microsoft.DurableTask`. This package includes a `DurableTaskWorker` implementation for interacting with a task hub via a `DurableTask.Core.IOrchestrationService`.
2+
3+
Commonly used types:
4+
- `ShimDurableTaskWorker`
5+
- `ShimDurableTaskWorkerOptions`
6+
7+
For more information, see https://github.com/microsoft/durabletask-dotnet
8+
9+
## Getting Started
10+
11+
``` CSharp
12+
HostApplicationBuilder builder = Host.CreateApplicationBuilder(args);
13+
14+
// instantiate this using existing Microsoft.Azure.DurableTask packages.
15+
IOrchestrationService orchestrationService = new AzureStorageOrchestrationService(...);
16+
builder.Services.AddDurableTaskWorker()
17+
.UseOrchestrationService(orchestrationService);
18+
```
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Initial implementation of `ShimDurableTaskWorker`

0 commit comments

Comments
 (0)