Microsoft.Azure.WebJobs.Extensions.Rpc 3.0.41
Microsoft.Azure.WebJobs.Extensions.Rpc
This package provides RPC capabilities to the WebJobs SDK, allowing extensions to communicate between the host and worker via RPC. For more information, please visit https://go.microsoft.com/fwlink/?linkid=2279708.
Commonly used types
WebJobsExtensionBuilderRpcExtensions
Example usage
The below example demonstrates how an extension can register a custom gRPC extension.
public static IWebJobsBuilder AddMyExtension(this IWebJobsBuilder builder, Action<MyExtensionOptions> configure)
{
builder.AddExtension<MyExtensionConfigProvider>()
.MapWorkerGrpcService<MyGrpcService>();
builder.Services.AddSingleton<MyGrpcService>();
return builder;
}
Showing the top 20 packages that depend on Microsoft.Azure.WebJobs.Extensions.Rpc.
Packages | Downloads |
---|---|
Microsoft.Azure.WebJobs.Extensions.DurableTask
Azure WebJobs SDK Extension for the Durable Task Framework
|
1 |
.NET 6.0
- Microsoft.Azure.WebJobs.Rpc.Core (>= 3.0.41)
- Grpc.AspNetCore (>= 2.49.0)