docs.particular.net icon indicating copy to clipboard operation
docs.particular.net copied to clipboard

All content for ParticularDocs

Results 222 docs.particular.net issues
Sort by recently updated
recently updated
newest added

Feedback for 'NServiceBus Step-by-step: Publishing Events' https://docs.particular.net/tutorials/nservicebus-step-by-step/4-publishing-events/ Location in GitHub: https://github.com/Particular/docs.particular.net/blob/master/tutorials/nservicebus-step-by-step/4-publishing-events/tutorial.md Why shipping endpoing cares about OrderPlaced event? It just need care OrderBilled event. If it is billed, order must...

TODO: - [ ] Link to the transactional session documentation page (see #5813 ) - [ ] Link to these samples from the transactional session documentation page

TODO: - [ ] Link to this sample from the main page

NHibernate persistence includes the [ScriptGenerator](https://github.com/Particular/NServiceBus.NHibernate/blob/develop/src/NServiceBus.NHibernate/ScriptGenerator.cs) class which allows users to generate script files for their persistence in a unit tests. [This test](https://github.com/Particular/NServiceBus.NHibernate/blob/develop/src/NServiceBus.NHibernate.Tests/GenerateScriptsTest.cs) included in the NH persistence code base shows...

We don't have an automated way of removing inactive endpoints from ServicePulse and they can pile up depending on how they are deployed. There's [an issue](https://github.com/Particular/ServicePulse/issues/468) to provide housekeeping in...

With a few tricks like https://github.com/danielmarbach/service-fabric-webinar/blob/7cc6921f11754a9eb5518ff0b1e1a55ccc7f007d/stateful-queues/StatefulRouting/EndpointPartitioning/HackEndpointNameBehavior.cs https://github.com/danielmarbach/service-fabric-webinar/blob/7cc6921f11754a9eb5518ff0b1e1a55ccc7f007d/stateful-queues/StatefulRouting/EndpointPartitioning/HackHostInfoHeadersBehavior.cs and overriding the display name ``` var hostInfo = endpointConfiguration.UniquelyIdentifyRunningInstance(); hostInfo.UsingCustomDisplayName(partitionInfo.LocalPartitionKey.HasValue ? $"back-stateful-{partitionInfo.LocalPartitionKey}" : "back-stateful"); ``` it is possible to visualize the data...