The
lapsed listener problem is one of the primary causes of leaks in Java
applications. It occurs when a subscriber (or 'listener') signs up
for a publisher's event, but fails to unsubscribe.
Lapsed
listener problem leads to below problems
- Leakage of the subscriber object.
- Performance degradation due to the publisher sending redundant notifications to 'zombie' subscribers.
No comments:
Post a Comment