Skip to content

Commit 1bc6892

Browse files
nicholas-brooksjeremydmiller
authored andcommitted
Fix nuget package reference to WolverineFX.RabbitMQ
1 parent 00b3f1c commit 1bc6892

File tree

1 file changed

+9
-9
lines changed
  • docs/guide/messaging/transports/rabbitmq

1 file changed

+9
-9
lines changed

docs/guide/messaging/transports/rabbitmq/index.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Wolverine uses the [Rabbit MQ .NET Client](https://www.rabbitmq.com/dotnet.html)
88

99
All the code samples in this section are from the [Ping/Pong with Rabbit MQ sample project](https://github.com/JasperFx/wolverine/tree/main/src/Samples/PingPongWithRabbitMq).
1010

11-
To use [RabbitMQ](http://www.rabbitmq.com/) as a transport with Wolverine, first install the `Wolverine.RabbitMQ` library via nuget to your project. Behind the scenes, this package uses the [RabbitMQ C# Client](https://www.rabbitmq.com/dotnet.html) to both send and receive messages from RabbitMQ.
11+
To use [RabbitMQ](http://www.rabbitmq.com/) as a transport with Wolverine, first install the `WolverineFX.RabbitMQ` library via nuget to your project. Behind the scenes, this package uses the [RabbitMQ C# Client](https://www.rabbitmq.com/dotnet.html) to both send and receive messages from RabbitMQ.
1212

1313
<!-- snippet: sample_bootstrapping_rabbitmq -->
1414
<a id='snippet-sample_bootstrapping_rabbitmq'></a>
@@ -43,7 +43,7 @@ return await Host.CreateDefaultBuilder(args)
4343
<sup><a href='https://github.com/JasperFx/wolverine/blob/main/src/Samples/PingPongWithRabbitMq/Pinger/Program.cs#L7-L36' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_bootstrapping_rabbitmq' title='Start of snippet'>anchor</a></sup>
4444
<!-- endSnippet -->
4545

46-
See the [Rabbit MQ .NET Client documentation](https://www.rabbitmq.com/dotnet-api-guide.html#connecting) for more information about configuring the `ConnectionFactory` to connect to Rabbit MQ.
46+
See the [Rabbit MQ .NET Client documentation](https://www.com/dotnet-api-guide.html#connecting) for more information about configuring the `ConnectionFactory` to connect to Rabbit MQ.
4747

4848

4949
## Managing Rabbit MQ Connections
@@ -62,7 +62,7 @@ using var host = await Host.CreateDefaultBuilder()
6262
.UseWolverine(opts =>
6363
{
6464
// *A* way to configure Rabbit MQ using their Uri schema
65-
// documented here: https://www.rabbitmq.com/uri-spec.html
65+
// documented here: https://www.com/uri-spec.html
6666
opts.UseRabbitMq(new Uri("amqp://localhost"))
6767

6868
// Turn on listener connection only in case if you only need to listen for messages
@@ -79,7 +79,7 @@ using var host = await Host.CreateDefaultBuilder()
7979
});
8080
}).StartAsync();
8181
```
82-
<sup><a href='https://github.com/JasperFx/wolverine/blob/main/src/Transports/RabbitMQ/Wolverine.RabbitMQ.Tests/Samples.cs#L99-L122' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_only_use_listener_connection_with_rabbitmq' title='Start of snippet'>anchor</a></sup>
82+
<sup><a href='https://github.com/JasperFx/wolverine/blob/main/src/Transports/RabbitMQ/Wolverine.Tests/Samples.cs#L99-L122' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_only_use_listener_connection_with_rabbitmq' title='Start of snippet'>anchor</a></sup>
8383
<!-- endSnippet -->
8484

8585
To only send Rabbit MQ messages, but never receive them:
@@ -91,7 +91,7 @@ using var host = await Host.CreateDefaultBuilder()
9191
.UseWolverine(opts =>
9292
{
9393
// *A* way to configure Rabbit MQ using their Uri schema
94-
// documented here: https://www.rabbitmq.com/uri-spec.html
94+
// documented here: https://www.com/uri-spec.html
9595
opts.UseRabbitMq(new Uri("amqp://localhost"))
9696

9797
// Turn on sender connection only in case if you only need to send messages
@@ -108,7 +108,7 @@ using var host = await Host.CreateDefaultBuilder()
108108
});
109109
}).StartAsync();
110110
```
111-
<sup><a href='https://github.com/JasperFx/wolverine/blob/main/src/Transports/RabbitMQ/Wolverine.RabbitMQ.Tests/Samples.cs#L127-L150' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_only_use_sending_connection_with_rabbitmq' title='Start of snippet'>anchor</a></sup>
111+
<sup><a href='https://github.com/JasperFx/wolverine/blob/main/src/Transports/RabbitMQ/Wolverine.Tests/Samples.cs#L127-L150' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_only_use_sending_connection_with_rabbitmq' title='Start of snippet'>anchor</a></sup>
112112
<!-- endSnippet -->
113113

114114

@@ -127,14 +127,14 @@ using var host = await Host.CreateDefaultBuilder()
127127
.UseWolverine(opts =>
128128
{
129129
// *A* way to configure Rabbit MQ using their Uri schema
130-
// documented here: https://www.rabbitmq.com/uri-spec.html
130+
// documented here: https://www.com/uri-spec.html
131131
opts.UseRabbitMq(new Uri("amqp://localhost"))
132132

133133
// Use Rabbit MQ for inter-node communication
134134
.EnableWolverineControlQueues();
135135
}).StartAsync();
136136
```
137-
<sup><a href='https://github.com/JasperFx/wolverine/blob/main/src/Transports/RabbitMQ/Wolverine.RabbitMQ.Tests/Samples.cs#L81-L94' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_using_rabbit_mq_control_queues' title='Start of snippet'>anchor</a></sup>
137+
<sup><a href='https://github.com/JasperFx/wolverine/blob/main/src/Transports/RabbitMQ/Wolverine.Tests/Samples.cs#L81-L94' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_using_rabbit_mq_control_queues' title='Start of snippet'>anchor</a></sup>
138138
<!-- endSnippet -->
139139

140140

@@ -152,7 +152,7 @@ using var host = await Host.CreateDefaultBuilder()
152152
.UseWolverine(opts =>
153153
{
154154
// *A* way to configure Rabbit MQ using their Uri schema
155-
// documented here: https://www.rabbitmq.com/uri-spec.html
155+
// documented here: https://www.com/uri-spec.html
156156
opts.UseRabbitMq(new Uri("amqp://localhost"))
157157

158158
// Stop Wolverine from trying to create a reply queue

0 commit comments

Comments
 (0)