Uses of Interface
org.hibernate.search.util.common.spi.ClosingOperator
-
Packages that use ClosingOperator Package Description org.hibernate.search.engine.common.resources.spi org.hibernate.search.util.common.impl -
-
Uses of ClosingOperator in org.hibernate.search.engine.common.resources.spi
Methods in org.hibernate.search.engine.common.resources.spi with parameters of type ClosingOperator Modifier and Type Method Description <T> SavedState.BuilderSavedState.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 ClosingOperator Constructor Description SavedValue(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 ClosingOperator Modifier and Type Method Description <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>
SAbstractCloser. 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>
SAbstractCloser. 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.<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.
-