Ramon Smits
Ramon Smits
Feedback for 'Non-Durable Messaging' https://docs.particular.net/nservicebus/messaging/non-durable-messaging Location in GitHub: https://github.com/Particular/docs.particular.net/blob/master/nservicebus/messaging/non-durable-messaging.md The page contains transport specific comments that are not available on the transport pages. That content should be copied to the...
Based on livechat: Improve the doco on partial updates to explain why it is good to have all handler share a single transaction and to have a single incoming message...
[Automatic rate limiting](https://docs.particular.net/nservicebus/recoverability/#automatic-rate-limiting) would be better if it doesn't ramp back up to 100% processing on the first successful message. A more gradual ramp up would be better.
## Problem It can happen that start partially fails so that a receive component has been initialized and started which creates a transport specific `IPushMessage` instance. However, if the receiving...
Resolves closing/tearing down resources on partial start. Moved `RunningEndpointInstance` as far up, it only has stop logic and that logic is what is needed to be stopped if start fails....
Added > Ensure to explicitly register all interfaces of a given type. That hopefully prevents users from converting: configuration.RegisterComponents(c => c.ConfigureComponent(DependencyLifecycle.SingleInstance)); into: configuration.RegisterComponents(c => c.AddSingleton()); and not into: configuration.RegisterComponents(c =>...
The databus uses the serializer for `byte[]` properties which is inefficient. Byte arrays should be directly written/read from the databus BLOB persister. In v8 serialization is managed via the `NServiceBus.DataBusConfig.ContentType`...
Currently, there is `IMessageSession` which is not context aware and there is `IMessageHandlerContext`. 1. `IMessageHandlerContext` isn't registered in the incoming message DI context. This makes it impossible for users that...