
org.omnifaces.utils.function.ExceptionlessAutoCloseable Maven / Gradle / Ivy
/*
* Copyright 2021 OmniFaces
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package org.omnifaces.utils.function;
/**
* Functional helper-interface to allow for use of closeable resources that don't implement AutoCloseable in a try-with-resources statement.
*
*
* This interface can be used with any object instance that doesn't implement AutoCloseable, but does have a close or similar method that needs to be
* called to free up resources. This functional interface is useable for any close method that doesn't throw any checked exceptions, for methods that
* throw a more specific exception than Exception, please see @link{ThrowingAutoCloseable}.
*
*
*
* Example:
*
* CloseableResource resource = ...
* try (ExceptionlessAutoCloseable eac = resource::close) {
* // Use resource
* }
*
*
*/
@FunctionalInterface
public interface ExceptionlessAutoCloseable extends AutoCloseable {
@Override
void close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy