You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/03/21 15:41:42 UTC

[commons-lang] branch master updated: Javadoc

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 2252fad  Javadoc
2252fad is described below

commit 2252fade508663ca468f6a6455494a1d511934c5
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Mar 21 11:41:38 2022 -0400

    Javadoc
---
 src/main/java/org/apache/commons/lang3/concurrent/Computable.java | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/lang3/concurrent/Computable.java b/src/main/java/org/apache/commons/lang3/concurrent/Computable.java
index a74d1b1..bd13cd9 100644
--- a/src/main/java/org/apache/commons/lang3/concurrent/Computable.java
+++ b/src/main/java/org/apache/commons/lang3/concurrent/Computable.java
@@ -16,14 +16,18 @@
  */
 package org.apache.commons.lang3.concurrent;
 
+import org.apache.commons.lang3.function.FailableFunction;
+
 /**
  * <p>Definition of an interface for a wrapper around a calculation that takes a single parameter and returns a result.</p>
  *
  * <p>This interface allows for wrapping a calculation into a class so that it maybe passed around an application.</p>
+ * 
+ * <p>See also {@code FailableFunction<I, O, InterruptedException>}.</p>
  *
  * @param <I> the type of the input to the calculation
  * @param <O> the type of the output of the calculation
- *
+ * @see FailableFunction
  * @since 3.6
  */
 public interface Computable<I, O> {