nservicebus, Server to send back message to distributor?
My requirement is if subscribers fails to insert data into the database i need send it backi to distributor. How can I do that one?开发者_JS百科 Can subscriber send Messages back to distributor?
nRkWhen a node receives a message from a distributor, that message doesn't return to the distributor in case of failure, it is moved to the configured error queue. Now, you could set the error queue to be the data queue of the distributor, but that could leave garbage in your system which clogs up the pipes. In short, you want to get the garbage out so that an administrator can look at it and decide what to do - return it to the distributor or do something else.
Does that answer your question?
精彩评论