David Boike
David Boike
I think FunctionFlip still has a memory leak that is most prominent when the Mac is sleeping. I kept noticing FunctionFlip taking inordinate amounts of memory, upwards of 1 gig....
In the ApprovalTests NuGet package, this change removed a virtual from a public type's public property in the 3.0.14 release: https://github.com/approvals/ApprovalTests.Net/commit/6d75f8767b9b052541813906965b5d2090780add#diff-5c97d4e883fa80b2a2a6abb36842bbeaL32 However it's not listed in the report: http://apicomparer.particular.net/compare/ApprovalTests/3.0.13...3.0.14#.NETFramework,Version=v4.5
Generally, generic message types aren't supported. In the docs for [designing messages](https://docs.particular.net/nservicebus/messaging/messages-events-commands#designing-messages) it states: > Generic message definitions (e.g. MyMessage) are not supported. It is recommended to use dedicated, simple...
The SimpleJson codebase is not maintained and is fairly old. This constitutes a maintenance risk, and while there are no known vulnerabilities, if there ever were any detected, it's unlikely...
Azure Functions now [has support for RabbitMQ bindings](https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-rabbitmq) but this cannot be used directly by the existing [NServiceBus support for Azure Functions](https://docs.particular.net/nservicebus/hosting/azure-functions-service-bus/) that uses Azure Service Bus bindings. This issue...
In the webinar [Live coding: NServiceBus in the real world](), starting at about 14:30 I start showing how to [change from LearningTransport to RabbitMQTransport](https://www.youtube.com/watch?v=h_E3sEfUNLQ&t=870s). The first two exceptions (to provide...
[Single Active Consumer](https://www.rabbitmq.com/consumers.html#single-active-consumer) queues enable an automatic failover where only one consumer is allowed to process messages from a queue at a given time, but when it fails or disconnects...
Feedback for 'Isolated Worker' https://docs.particular.net/nservicebus/hosting/azure-functions-service-bus/isolated-worker Location in GitHub: https://github.com/Particular/docs.particular.net/blob/master/nservicebus/hosting/azure-functions-service-bus/isolated-worker.md The configuration documentation here is misleading at best, and may just be wrong. It says that endpoint name can be loaded...
The documentation doesn't cover well that: * IEndpointInstance inherits IMessageSession but adds Stop method * IMessageSession is what is added to DI container * The entire hierarchy of "things that...