171172173174175176177178179180181
Set undelegated = new HashSet(); for (CacheWriter w : writers) { w.stop(); if (w instanceof DelegatingCacheWriter) { CacheWriter actual = undelegate(w); actual.stop(); undelegated.add(actual); } else { undelegated.add(w); } }
184185186187188189190191192193194
if (!undelegated.contains(l)) l.stop(); if (l instanceof DelegatingCacheLoader) { CacheLoader actual = undelegate(l); if (!undelegated.contains(actual)) { actual.stop(); } } } }
164165166167168169170171172173174
177178179180181182183184185186187
163164165166167168169170171172173
176177178179180181182183184185186
162163164165166167168169170171172
175176177178179180181182183184185