Christian Bach
Christian Bach
With this change, like before (but now with non-anonymous inner classes'-) objects are referencing the effective-final asyncWriter of the AtmosphereResponse, but different to before those objects are not short-lived but...
The idea is to add null-ing of the inner-classes fields in `AmtosphereResponse::destroy(...)` (on line 194) as follows : ``` java ... asyncIOWriter = null; stream = null; writer = null;...
Interesting, what happens if you remove the two fields and return new Stream and Writer objects every time the respective getters are called ? Only as an intermediary try in...