public interface Call<T extends Object>
Represents an API call.
abstract T
execute()
abstract Unit
enqueue(Callback<T> callback)
cancel()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract T execute()
Executes the call on the caller thread.
abstract Unit enqueue(Callback<T> callback)
Schedules the request to be executed at some point in the future.
callback
abstract Unit cancel()
Cancels the request, if possible.