*/
private class ContextScopedEventNotifier extends EventNotifierSupport {
@Override
public void notify(EventObject event) throws Exception {
ExchangeCompletedEvent completedEvent = (ExchangeCompletedEvent) event;
for (Route route : routes) {
throttle(route, completedEvent.getExchange());
}
}