public void setProcessThrottledMaximumSize(
long hydrationThrottledMaximumSize) {
this._processThrottledMaximumSize = hydrationThrottledMaximumSize;
if (hydrationThrottledMaximumSize < Long.MAX_VALUE) {
registerMessageExchangeInterceptor(new ProcessSizeThrottler());
} else {
unregisterMessageExchangeInterceptor(ProcessSizeThrottler.class);
}
}