-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: LavinMQ integration #2634
base: main
Are you sure you want to change the base?
Conversation
# .NET Aspire LavinMQ integration | ||
|
||
[!INCLUDE [includes-hosting](../includes/includes-hosting.md)] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing the banner include.
[!INCLUDE [banner](includes/banner.md)] | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This article needs to be added to the TOC, under here: https://github.com/dotnet/docs-aspire/blob/main/docs/toc.yml#L289
|
||
## Hosting integration | ||
|
||
The LavinMQ hosting integration models a LavinMQ server as the <xref:Aspire.Hosting.ApplicationModel.LavinMQContainerResource> type. To access this type and its APIs add the [📦 CommunityToolkit.Aspire.Hosting.LavinMQ](https://www.nuget.org/packages/CommunityToolkit.Aspire.Hosting.LavinMQ) NuGet package in the [app host](xref:dotnet/aspire/app-host) project. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The LavinMQ hosting integration models a LavinMQ server as the <xref:Aspire.Hosting.ApplicationModel.LavinMQContainerResource> type. To access this type and its APIs add the [📦 CommunityToolkit.Aspire.Hosting.LavinMQ](https://www.nuget.org/packages/CommunityToolkit.Aspire.Hosting.LavinMQ) NuGet package in the [app host](xref:dotnet/aspire/app-host) project. | |
The LavinMQ hosting integration models a LavinMQ server as the `Aspire.Hosting.ApplicationModel.LavinMQContainerResource` type. To access this type and its APIs add the [📦 CommunityToolkit.Aspire.Hosting.LavinMQ](https://www.nuget.org/packages/CommunityToolkit.Aspire.Hosting.LavinMQ) NuGet package in the [app host](xref:dotnet/aspire/app-host) project. |
var LavinMQ = builder.AddLavinMQ("messaging") | ||
.WithDataVolume(isReadOnly: false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
var LavinMQ = builder.AddLavinMQ("messaging") | |
.WithDataVolume(isReadOnly: false); | |
var LavinMQ = builder.AddLavinMQ("messaging") | |
.WithDataVolume(isReadOnly: false); |
var LavinMQ = builder.AddLavinMQ("messaging") | ||
.WithDataBindMount( | ||
source: @"C:\LavinMQ\Data", | ||
isReadOnly: false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
var LavinMQ = builder.AddLavinMQ("messaging") | |
.WithDataBindMount( | |
source: @"C:\LavinMQ\Data", | |
isReadOnly: false); | |
var LavinMQ = builder.AddLavinMQ("messaging") | |
.WithDataBindMount( | |
source: @"C:\LavinMQ\Data", | |
isReadOnly: false); |
LavinMQ is wire compatible with RabbitMQ. | ||
This may introduce a bit of confusion at first, but think of LavinMQ as a RabbitMQ server with a different name in terms of the .NET client integration. | ||
You can see an example of using the explicit RabbitMQ.Client [here](https://lavinmq.com/documentation/dot-net-sample-code) | ||
To get started with the .NET Aspire RabbitMQ client integration, install the [📦 Aspire.RabbitMQ.Client](https://www.nuget.org/packages/Aspire.RabbitMQ.Client) NuGet package in the client-consuming project, that is, the project for the application that uses the LavinMQ client. The LavinMQ client integration registers an [IConnection](https://LavinMQ.github.io/LavinMQ-dotnet-client/api/LavinMQ.Client.IConnection.html) instance that you can use to interact with LavinMQ. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LavinMQ is wire compatible with RabbitMQ. | |
This may introduce a bit of confusion at first, but think of LavinMQ as a RabbitMQ server with a different name in terms of the .NET client integration. | |
You can see an example of using the explicit RabbitMQ.Client [here](https://lavinmq.com/documentation/dot-net-sample-code) | |
To get started with the .NET Aspire RabbitMQ client integration, install the [📦 Aspire.RabbitMQ.Client](https://www.nuget.org/packages/Aspire.RabbitMQ.Client) NuGet package in the client-consuming project, that is, the project for the application that uses the LavinMQ client. The LavinMQ client integration registers an [IConnection](https://LavinMQ.github.io/LavinMQ-dotnet-client/api/LavinMQ.Client.IConnection.html) instance that you can use to interact with LavinMQ. | |
LavinMQ is wire compatible with RabbitMQ. This may introduce a bit of confusion at first, but think of LavinMQ as a RabbitMQ server with a different name in terms of the .NET client integration. You can see an example of using the explicit RabbitMQ.Client [here](https://lavinmq.com/documentation/dot-net-sample-code). To get started with the .NET Aspire RabbitMQ client integration, install the [📦 Aspire.RabbitMQ.Client](https://www.nuget.org/packages/Aspire.RabbitMQ.Client) NuGet package in the client-consuming project, that is, the project for the application that uses the LavinMQ client. The LavinMQ client integration registers an [IConnection](https://LavinMQ.github.io/LavinMQ-dotnet-client/api/LavinMQ.Client.IConnection.html) instance that you can use to interact with LavinMQ. |
This pull request adds supporting documentation for the LavinMQ hosting integration in the Community Toolkit tracked by CommunityToolkit/Aspire#477
Internal previews