The callback. @param arg The argument to the callback. @return The return value of the callback. @throws Exception any exception.
(T arg)
| 45 | * @throws Exception any exception. |
| 46 | */ |
| 47 | public R call(T arg) throws Exception; |
| 48 | |
| 49 | /** The identity function (returns its argument). */ |
| 50 | public static final Callback<Object, Object> PASSTHROUGH = |