You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Extensions/AzureBlobPayloads/DependencyInjection/DurableTaskWorkerBuilderExtensions.AzureBlobPayloads.cs
+15-14Lines changed: 15 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,11 @@
5
5
usingMicrosoft.DurableTask.Worker;
6
6
usingMicrosoft.Extensions.DependencyInjection;
7
7
usingMicrosoft.Extensions.Options;
8
+
usingMicrosoft.DurableTask.Worker.Grpc;
9
+
usingGrpc.Net.Client;
10
+
usingGrpc.Core.Interceptors;
8
11
9
-
namespaceMicrosoft.DurableTask.Worker;
12
+
namespaceMicrosoft.DurableTask;
10
13
11
14
/// <summary>
12
15
/// Extension methods to enable externalized payloads using Azure Blob Storage for Durable Task Worker.
@@ -16,6 +19,9 @@ public static class DurableTaskWorkerBuilderExtensionsAzureBlobPayloads
16
19
/// <summary>
17
20
/// Enables externalized payload storage using Azure Blob Storage for the specified worker builder.
18
21
/// </summary>
22
+
/// <param name="builder">The builder to configure.</param>
23
+
/// <param name="configure">The callback to configure the storage options.</param>
24
+
/// <returns>The original builder, for call chaining.</returns>
0 commit comments