-
public abstract class AsyncHttpPaginatedResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceAsyncHttpPaginatedResponse.CallbackAn interface allowing a client to be notified of the outcomeof an asynchronous operation.
-
Field Summary
Fields Modifier and Type Field Description public booleansuccesspublic intstatusCodepublic interrorCodepublic StringerrorMessagepublic Array<Param>headers
-
Method Summary
Modifier and Type Method Description abstract Array<JsonElement>items()Get the contents as an array of component type abstract voidfirst(AsyncHttpPaginatedResponse.Callback callback)Obtain params required to perform the given relative query abstract voidcurrent(AsyncHttpPaginatedResponse.Callback callback)abstract voidnext(AsyncHttpPaginatedResponse.Callback callback)abstract booleanhasFirst()abstract booleanhasCurrent()abstract booleanhasNext()-
-
Method Detail
-
first
abstract void first(AsyncHttpPaginatedResponse.Callback callback)
Obtain params required to perform the given relative query
-
current
abstract void current(AsyncHttpPaginatedResponse.Callback callback)
-
next
abstract void next(AsyncHttpPaginatedResponse.Callback callback)
-
hasFirst
abstract boolean hasFirst()
-
hasCurrent
abstract boolean hasCurrent()
-
hasNext
abstract boolean hasNext()
-
-
-
-