Pär Dahlman
Pär Dahlman
I'm trying to migrate my game's turns from using phases and turns to using turn and stages. I'm struggling with the following state transitions: In the `main` stage, all players...
I have another, plugin + active players question 😄 Consider this plugin that just logs the value of `ctx.activePlayers` whenever a move has been dispatched ```js const examplePlugin = {...
This fix should be similar to what was done in #257
RawRabbit currently uses the `Port` property on `ConnectionFactory` to define what port to use. It connects to multiple hosts using `CreateConnection` with a list of strings. There is an overload...
Documentation is being rewritten for 2.0. Ping me here if you want to help out!
The `QueueSuffix` enricher makes it possible to [register](https://github.com/pardahlman/RawRabbit/blob/2.0/test/RawRabbit.IntegrationTests/Enrichers/QueueSuffixTests.cs#L21) an application name queue suffix ```csharp new RawRabbitOptions { Plugins = p => p.UseApplicationQueueSuffix() } ``` Looking at the implementation, there are...
Looking forward to the next major version of `NServiceBus`. I was surprised to see that you are dropping support for `netstandard2.0` - what is the rational for this? It looks...
The `QueryProviderService` resolves a list of `IQueryProvider` based on the supplied command. Each provider kicks of an task that performs the query _and updates the same `IList`_. Here's a code...