96979899100101102103104105106
{ NotifySubscribe notifySubscribe = (NotifySubscribe) callbacks_.get(i.next()); try { notifySubscribe.subscription_change(added, removed); } catch (InvalidEventType e) { logger_.warn("error during subscription_change", e); } }
9596979899100101102103104105
8990919293949596979899
{ NotifySubscribeOperations _listener = (NotifySubscribeOperations) _i.next(); try { _listener.subscription_change(added, removed); } catch (Exception e) { logger_.warn("subscription_change failed for " + _listener, e); } }
271272273274275276277278279280281
{ public void subscription_change(EventType[] added, EventType[] removed) { try { _listener.subscription_change(added, removed); } catch (NO_IMPLEMENT e) { logger_.info("disable subscription_change for Supplier", e); removeListener();
277278279280281282283284285286287