Interface DbxRequest<T>

Type Parameters:
T - the type of result produced by this request
All Superinterfaces:
Callable<T>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface DbxRequest<T> extends Callable<T>
A functional interface representing a request that produces a result <T> and may throw a checked exception. Extends Callable but is intended for use in contexts where the operation represents an API request.
  • Method Summary

    Methods inherited from interface java.util.concurrent.Callable

    call