Uses of Interface
org.hibernate.search.util.common.spi.ClosingOperator
Packages that use ClosingOperator
Package
Description
-
Uses of ClosingOperator in org.hibernate.search.engine.common.resources.spi
Methods in org.hibernate.search.engine.common.resources.spi with parameters of type ClosingOperatorModifier and TypeMethodDescriptionSavedState.Builder.put(SavedState.Key<T> key, T value, ClosingOperator<T, ? extends Exception> closingOperator) Constructors in org.hibernate.search.engine.common.resources.spi with parameters of type ClosingOperatorModifierConstructorDescriptionSavedValue(T value, ClosingOperator<T, ? extends Exception> closingOperator) -
Uses of ClosingOperator in org.hibernate.search.util.common.impl
Methods in org.hibernate.search.util.common.impl with parameters of type ClosingOperatorModifier and TypeMethodDescription<T> SAbstractCloser.push(ClosingOperator<T, ? extends E> operator, T objectToClose) If the givenobjectToCloseis non-null, execute the given closeoperatorimmediately onobjectToClose, swallowing any throwable in order toadd it as suppressedto a previously caught throwable, or to re-throw it later.<T,U> S AbstractCloser.push(ClosingOperator<T, ? extends E> operator, U objectToExtractFrom, Function<U, T> extract) If the givenobjectToExtractFromis non-null, and an object can be extracted from it usingextract, execute the given closeoperatorimmediately on the object to close, swallowing any throwable in order toadd it as suppressedto a previously caught throwable, or to re-throw it later.<T,U> S AbstractCloser.pushAll(ClosingOperator<T, ? extends E> operator, Iterable<? extends U> objectsToExtractFrom, Function<U, T> extract) Execute the given closeoperatorimmediately on an object extracted from each element of the given iterable, swallowing any throwable in order toadd it as suppressedto a previously caught throwable, or to re-throw it later.<T> SAbstractCloser.pushAll(ClosingOperator<T, ? extends E> operator, Iterable<T> objectsToClose) Execute the given closeoperatorimmediately on each element of the given iterable, swallowing any throwable in order toadd it as suppressedto a previously caught throwable, or to re-throw it later.final <T> SAbstractCloser.pushAll(ClosingOperator<T, ? extends E> operator, T... objectsToClose) Execute the given closeoperatorimmediately on each element of the given array, swallowing any throwable in order toadd it as suppressedto a previously caught throwable, or to re-throw it later.