Raycynix.Extensions.Messaging.Grpc
0.2.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Raycynix.Extensions.Messaging.Grpc --version 0.2.3
NuGet\Install-Package Raycynix.Extensions.Messaging.Grpc -Version 0.2.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Raycynix.Extensions.Messaging.Grpc" Version="0.2.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Raycynix.Extensions.Messaging.Grpc" Version="0.2.3" />
<PackageReference Include="Raycynix.Extensions.Messaging.Grpc" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Raycynix.Extensions.Messaging.Grpc --version 0.2.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Raycynix.Extensions.Messaging.Grpc, 0.2.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Raycynix.Extensions.Messaging.Grpc@0.2.3
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Raycynix.Extensions.Messaging.Grpc&version=0.2.3
#tool nuget:?package=Raycynix.Extensions.Messaging.Grpc&version=0.2.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Raycynix.Extensions.Messaging.Grpc
Raycynix.Extensions.Messaging.Grpc contains the direct gRPC transport for Raycynix messaging.
What it contains
AddGrpc(...)AddGrpcUnary<TGrpcClient, TRequest, TResponse>(...)GrpcDirectMessagingConfigurationIGrpcRequestClient- gRPC unary request/response transport over
Grpc.Net.Client
Usage
Register the transport and map logical destinations to unary gRPC calls:
builder.Services.AddRaycynixMessaging(builder.Configuration)
.AddGrpc(options =>
{
options.Address = "https://catalog-service";
})
.AddGrpcUnary<Catalog.CatalogClient, GetCatalogItemRequest, CatalogItemReply>(
"catalog/get-item",
static async (client, request, cancellationToken) =>
await client.GetItemAsync(request, cancellationToken: cancellationToken));
Send a direct request:
public class CatalogGateway(
IRequestEnvelopeFactory envelopeFactory,
IGrpcRequestClient requestClient)
{
public async Task<CatalogItemReply> GetItemAsync(string sku, CancellationToken cancellationToken)
{
var request = envelopeFactory.Create(
new GetCatalogItemRequest { Sku = sku },
destination: "catalog/get-item",
format: MessageFormat.Grpc);
var response = await requestClient.SendAsync<GetCatalogItemRequest, CatalogItemReply>(
request,
cancellationToken);
return response.Response;
}
}
Notes:
destinationis a logical operation key, not a URL- the registered unary mapping decides which generated gRPC client and method are called
- contract, correlation, trace, and security headers are added on the shared request envelope level
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Grpc.Net.Client (>= 2.76.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5)
- Raycynix.Extensions.Messaging (>= 0.11.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.