A functional interface representing a request that produces a result and may throw a checked exception. Extends java.util.concurrent.Callable but is intended for use in contexts where the operation represents an API request. @param the type of result produced by this request
| 10 | * @param <T> the type of result produced by this request |
| 11 | */ |
| 12 | @FunctionalInterface |
| 13 | public interface DbxRequest<T> extends Callable<T> { } |
nothing calls this directly
no outgoing calls
no test coverage detected