in pulsar-client-reactive-producer-cache-caffeine/src/main/java/org/apache/pulsar/reactive/client/producercache/CaffeineProducerCacheProvider.java [72:81]
private void onRemoval(Object key, Object entry, RemovalCause cause) {
if (entry instanceof AutoCloseable) {
try {
((AutoCloseable) entry).close();
}
catch (Exception ex) {
throw new RuntimeException(ex);
}
}
}