MeshWeaver.Connection.SignalR
2.0.3
dotnet add package MeshWeaver.Connection.SignalR --version 2.0.3
NuGet\Install-Package MeshWeaver.Connection.SignalR -Version 2.0.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="MeshWeaver.Connection.SignalR" Version="2.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MeshWeaver.Connection.SignalR" Version="2.0.3" />
<PackageReference Include="MeshWeaver.Connection.SignalR" />
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 MeshWeaver.Connection.SignalR --version 2.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MeshWeaver.Connection.SignalR, 2.0.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.
#addin nuget:?package=MeshWeaver.Connection.SignalR&version=2.0.3
#tool nuget:?package=MeshWeaver.Connection.SignalR&version=2.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MeshWeaver.Connection.SignalR
Overview
MeshWeaver.Connection.SignalR enables external connections to the MeshWeaver data mesh using SignalR. This library provides the client-side implementation for connecting message hubs over SignalR transport.
Features
- Connectivity for SignalR
- Connection management
- Authentication and authorization
- Transport protocols
- Connection pooling
- Retry and fallback mechanisms
- Diagnostics and monitoring
Usage
Basic Connection
// Create a message hub with SignalR connection
var client = serviceProvider.CreateMessageHub(
new SignalRAddress(),
config => config.UseSignalRClient(SignalRUrl)
);
Request-Response Pattern
// Get target hub address
var targetAddress = Host.Services.GetRequiredService<IMessageHub>().Address;
// Send request and await response
var response = await client.AwaitResponse(
new PingRequest(),
o => o.WithTarget(targetAddress)
);
Configuration
The SignalR client can be configured during hub creation:
config => config
.UseSignalRClient(SignalRUrl)
// Additional SignalR options can be configured here
Connection Types
- REST API connections
- Real-time messaging
- Database connections
- Service integration points
- External system interfaces
Integration
- Works with MeshWeaver.Mesh.Contract for mesh addressing
- Integrates with MeshWeaver.Messaging.Hub for message routing
Related Projects
- MeshWeaver.Messaging - Messaging infrastructure
- MeshWeaver.Data - Data persistence
See Also
Refer to the main MeshWeaver documentation for more information about external mesh connections.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- MeshWeaver.Hosting (>= 2.0.3)
- MeshWeaver.Mesh.Contract (>= 2.0.3)
- MeshWeaver.Messaging.Hub (>= 2.0.3)
- Microsoft.AspNetCore.SignalR.Client (>= 9.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.3 | 464 | 3/24/2025 |
2.0.2 | 434 | 3/24/2025 |
2.0.1 | 89 | 3/21/2025 |
2.0.0 | 123 | 3/20/2025 |
2.0.0-preview3 | 71 | 2/28/2025 |
2.0.0-Preview2 | 67 | 2/10/2025 |
2.0.0-preview1 | 71 | 1/6/2025 |