public void setProcessThrottledMaximumCount(
int hydrationThrottledMaximumCount) {
this._processThrottledMaximumCount = hydrationThrottledMaximumCount;
if (hydrationThrottledMaximumCount < Integer.MAX_VALUE) {
registerMessageExchangeInterceptor(new ProcessCountThrottler());
} else {
unregisterMessageExchangeInterceptor(ProcessCountThrottler.class);
}
}