开发者

NServiceBus: GridInterceptingMessageHandler

What is "GridInterceptingMessageHandler"? I did a search and I can find no mention of this on nservicebus.com. Also, I see the samples have the line:

.LoadMessageHandlers(First<GridInterceptingMessageHandl开发者_高级运维er>.Then<SagaMessageHandler>())

What does that do exactly?


If you look at the source and its documentation you'll see the following:

Intercepts all messages, not allowing any through if the endpoint has had its number of worker threads reduced to zero.

GridInterceptingMessageHandler


NSB allows you to dynamically tune the number of work threads and endpoint is using to process messages. If the number of work threads has been reduced to zero, the endpoint becomes disabled and will not continue to process messages. The tuning of threads is useful if you would like to increase the speed of message processing(assuming everything else will scale as well) while not having to restart the endpoint.

This is especially helpful if you want to slowing drain the system of messages so that you can perform upgrades or other maintenance duties. By default this is wired up for you, you would only reference it if you decided to override how the message handlers are loaded(as in the example).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜