Skip to content

Commit

Permalink
dbeaver/pro#3523 Add throwable function interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Gagarkin authored and Ivan Gagarkin committed Nov 7, 2024
1 parent f0d13f2 commit eadcf5e
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/org.jkiss.utils/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ Export-Package: org.jkiss.api,
org.jkiss.utils.io,
org.jkiss.utils.rest,
org.jkiss.utils.time,
org.jkiss.utils.xml
org.jkiss.utils.xml,
org.jkiss.utils.function
Automatic-Module-Name: org.jkiss.utils
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
* DBeaver - Universal Database Manager
* Copyright (C) 2010-2024 DBeaver Corp and others
*
* 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
*
* http://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.jkiss.utils.function;

/**
* Throwable function.
*/
@FunctionalInterface
public interface ThrowableFunction<I, O, E extends Exception> {

/**
* Applies this function to the given argument.
*
* @param input the function argument.
* @return the function result.
* @throws E if an exception occurs.
*/
O apply(I input) throws E;
}

0 comments on commit eadcf5e

Please sign in to comment.