Kyle Baley
Kyle Baley
To stop receiving and processing messages, users have to stop the whole endpoint and restart it again when they want to consume messages again. This has several disadvantages: * When...
_This issue was transferred from a private repository_ In order to query saga state, users often use messages or other techniques in the CQRS space crafted specifically for that purpose...
_This issue was transferred from a private repository_ Users shouldn't need to know all of the details of how transport specific settings work. What they know is generally how my...
_This issue was transferred from a private repository_ `EndpointConfiguration` instances require a lot of settings, most of which rarely (if ever) deviate from default values. A new `EndpointConfiguration` instance is,...
_This issue was transferred from a private repository_ I've seen this scenario in several support cases: The user wants to send a large amount of messages via the bus to...
_This issue was transferred from a private repository_ The send/publish API allows to do something like: ``` context.Send( e => { /* set interface properties */ } ); context.Publish( e...
_This issue was transferred from a private repository_ We have a [sample showing](http://docs.particular.net/nservicebus/scheduling/#converting-a-scheduled-task-into-a-saga) how to use a saga to define a Scheduler that overcomes the Core Scheduler API limitations. We...
_This issue was transferred from a private repository_ Our processing pipeline allows customer to create a logging scope in a custom behavior. Within this scope all log entries can include...
_This issue was transferred from a private repository_ The Send, Publish, and Reply operations are 'Async', indicating they are doing IO and even hinting these operations are happening immediately. However,...
_This issue was transferred from a private repository_ Users are able to use IMessageSession in the pipeline which can have side effects as [outlined by the nservicebus documentation](https://docs.particular.net/nservicebus/messaging/send-a-message#inside-the-incoming-message-processing-pipeline). Some users...