Uses of Class
org.hibernate.search.util.common.impl.SuppressingCloser
Packages that use SuppressingCloser
-
Uses of SuppressingCloser in org.hibernate.search.util.common.impl
Methods in org.hibernate.search.util.common.impl that return SuppressingCloserModifier and TypeMethodDescriptionSuppressingCloser.push(AutoCloseable closeable) Close the givencloseableimmediately, swallowing any throwable in order toadd it as suppressedto the main throwable.SuppressingCloser.push(T objectToExtractFrom, Function<T, ? extends AutoCloseable> extract) Close thecloseableextracted fromobjectToExtractFromimmediately, swallowing any throwable in order toadd it as suppressedto the main throwable.SuppressingCloser.pushAll(AutoCloseable... closeables) Close the givencloseablesimmediately, swallowing any throwable in order toadd it as suppressedto the main throwable.SuppressingCloser.pushAll(Iterable<? extends AutoCloseable> closeables) Close the givencloseablesimmediately, swallowing any throwable in order toadd it as suppressedto the main throwable.SuppressingCloser.pushAll(Iterable<? extends U> objectsToExtractFrom, Function<U, AutoCloseable> extract) Close theAutoCloseableelements extracted from elements ofobjectToExtractFromimmediately, swallowing any throwable in order toadd it as suppressedto the main throwable.